build: allow configure -C to work again
[nivanova/samba-autobuild/.git] / lib / replace / wscript
1 #! /usr/bin/env python
2
3 srcdir = '../..'
4 blddir = 'bin'
5
6 import sys
7 sys.path.insert(0, srcdir+"/buildtools/wafsamba")
8 import wafsamba
9 import Options, os, preproc
10
11 def set_options(opt):
12     opt.tool_options('compiler_cc')
13     # TODO: we are not yet obeying these default paths at install time
14     opt.add_option('--libdir',
15                    help=("object code libraries [PREFIX/lib"),
16                    action="store", dest='LIBDIR', default='${PREFIX}/lib')
17     opt.add_option('--bindir',
18                    help=("user executables [PREFIX/bin]"),
19                    action="store", dest='BINDIR', default='${PREFIX}/bin')
20     opt.add_option('--sbindir',
21                    help=("system admin executables [PREFIX/sbin]"),
22                    action="store", dest='SBINDIR', default='${PREFIX}/sbin')
23     opt.add_option('--enable-rpath',
24                    help=("Enable use of rpath for installed binaries"),
25                    action="store_true", dest='enable_rpath', default=False)
26     opt.add_option('--enable-developer',
27                    help=("Turn on developer warnings and debugging"),
28                    action="store_true", dest='developer', default=False)
29     opt.add_option('--timestamp-dependencies',
30                    help=("use file timestamps instead of content for build dependencies (BROKEN)"),
31                    action="store_true", dest='timestamp_dependencies', default=False)
32     opt.add_option('-C', action='store_true', help='dummy option for autoconf compatibility')
33
34 @wafsamba.runonce
35 def configure(conf):
36     conf.env.hlist = []
37     conf.env.srcdir = conf.srcdir
38
39     # during the configure checks we want the waf dependency checker
40     # to go into system includes. This ensures that if you add/remove
41     # a system library, that 'waf configure' will detect that, and
42     # it won't be fooled by the waf cache
43     preproc.go_absolute = True
44
45     if Options.options.timestamp_dependencies:
46         conf.ENABLE_TIMESTAMP_DEPENDENCIES()
47
48     # load our local waf extensions
49     conf.check_tool('wafsamba', tooldir=conf.srcdir + "/buildtools/wafsamba")
50
51     conf.check_tool('compiler_cc')
52     # gccdeps can be useful for debugging recursion in #include lines
53     conf.check_tool('gccdeps', tooldir=conf.srcdir + "/buildtools/wafsamba")
54
55     # make the install paths available in environment
56     conf.env.LIBDIR = Options.options.LIBDIR
57     conf.env.BINDIR = Options.options.BINDIR
58     conf.env.SBINDIR = Options.options.SBINDIR
59
60     conf.env.RPATH_ON_INSTALL = Options.options.enable_rpath
61
62     # we should use the PIC options in waf instead
63     conf.ADD_CFLAGS('-fPIC')
64
65     # check for pkgconfig
66     conf.check_cfg(atleast_pkgconfig_version='0.0.0')
67
68     conf.DEFINE('_GNU_SOURCE', 1, add_to_cflags=True)
69     conf.DEFINE('_XOPEN_SOURCE_EXTENDED', 1, add_to_cflags=True)
70     conf.DEFINE('LIBREPLACE_NETWORK_CHECKS', 1)
71
72     conf.CHECK_HEADERS('unistd.h sys/types.h stdlib.h stdio.h stddef.h')
73     conf.CHECK_HEADERS('ctype.h locale.h acl/libacl.h compat.h')
74     conf.CHECK_HEADERS('acl/libacl.h attr/xattr.h compat.h ctype.h dustat.h')
75     conf.CHECK_HEADERS('fcntl.h fnmatch.h glob.h history.h krb5.h langinfo.h')
76     conf.CHECK_HEADERS('libaio.h locale.h ndir.h net/if.h pwd.h readline.h')
77     conf.CHECK_HEADERS('readline/history.h readline/readline.h shadow.h sys/acl.h')
78     conf.CHECK_HEADERS('sys/attributes.h sys/capability.h sys/dir.h sys/epoll.h')
79     conf.CHECK_HEADERS('sys/fcntl.h sys/filio.h sys/filsys.h sys/fs/s5param.h sys/fs/vx/quota.h')
80     conf.CHECK_HEADERS('sys/id.h sys/ioctl.h sys/ipc.h sys/mman.h sys/mode.h sys/ndir.h sys/priv.h')
81     conf.CHECK_HEADERS('sys/resource.h sys/security.h sys/shm.h sys/statfs.h sys/statvfs.h sys/termio.h')
82     conf.CHECK_HEADERS('sys/vfs.h sys/xattr.h termio.h termios.h')
83     conf.CHECK_HEADERS('sys/wait.h sys/stat.h malloc.h grp.h')
84     conf.CHECK_HEADERS('crypt.h dlfcn.h dl.h standards.h stdbool.h stdint.h')
85     conf.CHECK_HEADERS('sys/select.h setjmp.h utime.h sys/syslog.h syslog.h')
86     conf.CHECK_HEADERS('sys/time.h time.h stdarg.h vararg.h sys/mount.h mntent.h')
87     conf.CHECK_HEADERS('stropts.h unix.h string.h strings.h sys/param.h limits.h')
88     conf.CHECK_HEADERS('sys/socket.h netinet/in.h netdb.h arpa/inet.h netinet/in_systm.h')
89     conf.CHECK_HEADERS('netinet/ip.h netinet/tcp.h netinet/in_ip.h sys/sockio.h sys/un.h')
90     conf.CHECK_HEADERS('sys/uio.h ifaddrs.h direct.h dirent.h')
91     conf.CHECK_HEADERS('windows.h winsock2.h ws2tcpip.h')
92     conf.CHECK_HEADERS('resolv.h libintl.h errno.h')
93     conf.CHECK_HEADERS('gcrypt.h getopt.h iconv.h')
94     conf.CHECK_HEADERS('sys/inotify.h memory.h nss.h popt.h sasl/sasl.h')
95     conf.CHECK_HEADERS('security/pam_appl.h sys/inotify.h zlib.h asm/unistd.h')
96
97     if 'HAVE_STDDEF_H' in conf.env and 'HAVE_STDLIB_H' in conf.env:
98         conf.DEFINE('STDC_HEADERS', 1)
99
100     if 'HAVE_SYS_TIME_H' in conf.env and 'HAVE_TIME_H' in conf.env:
101         conf.DEFINE('TIME_WITH_SYS_TIME', 1)
102
103     conf.define('SHLIBEXT', "so", quote=True)
104
105     conf.CHECK_TYPES('"long long" intptr_t uintptr_t ptrdiff_t')
106     conf.CHECK_TYPES('comparison_fn_t socklen_t bool')
107     conf.CHECK_TYPE('_Bool', define='HAVE__Bool')
108
109     conf.CHECK_TYPE('int8_t', 'char')
110     conf.CHECK_TYPE('int16_t', 'short')
111     conf.CHECK_TYPE('uint16_t', 'unsigned short')
112     conf.CHECK_TYPE('int32_t', 'int')
113     conf.CHECK_TYPE('uint32_t', 'unsigned')
114     conf.CHECK_TYPE('int64_t', 'long long')
115     conf.CHECK_TYPE('uint64_t', 'unsigned long long')
116     conf.CHECK_TYPE('size_t', 'unsigned int')
117     conf.CHECK_TYPE('ssize_t', 'int')
118     conf.CHECK_TYPE('ino_t', 'unsigned')
119     conf.CHECK_TYPE('loff_t', 'off_t')
120     conf.CHECK_TYPE('bool', 'off_t')
121     conf.CHECK_TYPE('offset_t', 'loff_t')
122     conf.CHECK_TYPE('volatile int', define='HAVE_VOLATILE')
123
124     conf.CHECK_TYPE_IN('struct ifaddrs', 'ifaddrs.h')
125     conf.CHECK_TYPE_IN('struct addrinfo', 'netdb.h')
126     conf.CHECK_TYPE_IN('struct sockaddr', 'sys/socket.h')
127     conf.CHECK_CODE('struct sockaddr_in6 x', define='HAVE_STRUCT_SOCKADDR_IN6')
128     conf.CHECK_TYPE_IN('struct sockaddr_storage', 'sys/socket.h')
129     conf.CHECK_TYPE_IN('sa_family_t', 'sys/socket.h')
130
131     conf.CHECK_TYPE_IN('sig_atomic_t', 'signal.h', define='HAVE_SIG_ATOMIC_T_TYPE')
132
133     conf.CHECK_CODE('''
134                        struct sockaddr_storage sa_store;
135                        struct addrinfo *ai = NULL;
136                        struct in6_addr in6addr;
137                        int idx = if_nametoindex("iface1");
138                        int s = socket(AF_INET6, SOCK_STREAM, 0);
139                        int ret = getaddrinfo(NULL, NULL, NULL, &ai);
140                        if (ret != 0) {
141                           const char *es = gai_strerror(ret);
142                        }
143                        freeaddrinfo(ai);
144                        ''',
145                     define='HAVE_IPV6')
146
147     # check if signal() takes a void function
148     if conf.CHECK_CODE('return *(signal (0, 0)) (0) == 1', define='RETSIGTYPE_INT', msg='Checking return type of signal handlers'):
149         conf.DEFINE('RETSIGTYPE', 'int')
150     else:
151         conf.DEFINE('RETSIGTYPE', 'void')
152
153     conf.CHECK_FUNCS('shl_load shl_unload shl_findsym')
154     conf.CHECK_FUNCS('pipe strftime srandom random srand rand usleep setbuffer')
155     conf.CHECK_FUNCS('lstat getpgrp utime utimes seteuid setresuid setegid')
156     conf.CHECK_FUNCS('setresgid chroot bzero strerror vsyslog setlinebuf mktime')
157     conf.CHECK_FUNCS('ftruncate chsize rename waitpid wait4 strlcpy strlcat')
158     conf.CHECK_FUNCS('initgroups memmove strdup pread pwrite strndup strcasestr')
159     conf.CHECK_FUNCS('strtok_r mkdtemp dup2 dprintf vdprintf isatty chown lchown')
160     conf.CHECK_FUNCS('link readlink symlink realpath fdatasync snprintf vsnprintf')
161     conf.CHECK_FUNCS('asprintf vasprintf setenv unsetenv strnlen strtoull __strtoull')
162     conf.CHECK_FUNCS('strtouq strtoll __strtoll strtoq memmem printf memset memcpy')
163     conf.CHECK_FUNCS('connect gethostbyname if_nametoindex socketpair')
164     conf.CHECK_FUNCS('inet_ntoa inet_aton inet_ntop inet_pton')
165     conf.CHECK_FUNCS('dirfd getdirentries getdents syslog getaddrinfo freeaddrinfo')
166     conf.CHECK_FUNCS('gai_strerror get_current_dir_name')
167     conf.CHECK_FUNCS('timegm getifaddrs freeifaddrs mmap setgroups setsid')
168     conf.CHECK_FUNCS('getgrent_r getgrgid_r getgrnam_r getgrouplist getpagesize')
169     conf.CHECK_FUNCS('getpwent_r getpwnam_r getpwuid_r epoll_create')
170
171
172     conf.CHECK_FUNCS_IN('dlopen dlsym dlerror dlclose', 'dl')
173     conf.CHECK_FUNCS_IN('poptGetContext', 'popt')
174     conf.CHECK_FUNCS_IN('res_search', 'resolv')
175     conf.CHECK_FUNCS_IN('gettext', 'intl')
176     conf.CHECK_FUNCS_IN('pthread_create', 'pthread')
177
178     conf.CHECK_FUNCS_IN('crypt', 'crypt', checklibc=True)
179
180     conf.CHECK_VARIABLE('rl_event_hook', define='HAVE_DECL_RL_EVENT_HOOK', always=True)
181
182     conf.CHECK_VARIABLE('__FUNCTION__', define='HAVE_FUNCTION_MACRO')
183
184     conf.CHECK_DECLS('snprintf vsnprintf asprintf vasprintf')
185
186     conf.CHECK_DECLS('dirfd environ errno getgrent_r getpwent_r', reverse=True)
187     conf.CHECK_DECLS('pread pwrite setenv setresgid setresuid', reverse=True)
188
189     conf.CHECK_SIZEOF('char int "long long" long off_t short size_t ssize_t')
190     conf.CHECK_SIZEOF('void*', define='SIZEOF_VOID_P')
191
192     if conf.CONFIG_SET('HAVE_EPOLL_CREATE') and conf.CONFIG_SET('HAVE_SYS_EPOLL_H'):
193         conf.DEFINE('HAVE_EPOLL', 1)
194
195     conf.CHECK_CODE('va_list ap1,ap2; va_copy(ap1,ap2)',
196                     define="HAVE_VA_COPY",
197                     msg="Checking for va_copy")
198
199     conf.CHECK_CODE('''
200                     #define eprintf(...) fprintf(stderr, __VA_ARGS__)
201                     eprintf("bla", "bar")
202                     ''', define='HAVE__VA_ARGS__MACRO')
203
204     conf.CHECK_CODE('gettimeofday(NULL, NULL)', 'HAVE_GETTIMEOFDAY_TZ', execute=False)
205
206     conf.CHECK_CODE('#include "test/snprintf.c"',
207                     define="HAVE_C99_VSNPRINTF",
208                     execute=1,
209                     addmain=False,
210                     msg="Checking for C99 vsnprintf")
211
212     if Options.options.developer:
213         conf.ADD_CFLAGS('-Wall -g -Wfatal-errors -W -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Werror-implicit-function-declaration -Wformat=2 -Wno-format-y2k')
214
215     conf.SAMBA_CONFIG_H()
216     conf.SAMBA_BUILD_ENV()
217
218     # look for a method of finding the list of network interfaces
219     for method in ['HAVE_IFACE_GETIFADDRS', 'HAVE_IFACE_AIX', 'HAVE_IFACE_IFCONF', 'HAVE_IFACE_IFREQ']:
220         if conf.CHECK_CODE('''
221                            #define %s 1
222                            #define NO_CONFIG_H 1
223                            #define AUTOCONF_TEST 1
224                            #define SOCKET_WRAPPER_NOT_REPLACE
225                            #include "replace.c"
226                            #include "inet_ntop.c"
227                            #include "snprintf.c"
228                            #include "getifaddrs.c"
229                            #define getifaddrs_test main
230                            #include "test/getifaddrs.c"
231                            ''' % method,
232                            method,
233                            addmain=False,
234                            execute=True):
235             break
236
237     conf.CHECK_CODE('''
238                     typedef struct {unsigned x;} FOOBAR;
239                     #define X_FOOBAR(x) ((FOOBAR) { x })
240                     #define FOO_ONE X_FOOBAR(1)
241                     FOOBAR f = FOO_ONE;
242                     static const struct {
243                         FOOBAR y;
244                     } f2[] = {
245                         {FOO_ONE}
246                     };
247                     static const FOOBAR f3[] = {FOO_ONE};
248                     ''',
249                     define='HAVE_IMMEDIATE_STRUCTURES')
250
251     conf.CHECK_CODE('mkdir("foo",0777)', define='HAVE_MKDIR_MODE')
252
253     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtim.tv_nsec', define='HAVE_STAT_TV_NSEC')
254     # we need the st_rdev test under two names
255     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_rdev', define='HAVE_STRUCT_STAT_ST_RDEV')
256     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_rdev', define='HAVE_ST_RDEV')
257     conf.CHECK_STRUCTURE_MEMBER('struct sockaddr_storage', 'ss_family')
258
259     conf.CHECK_CODE('struct sockaddr_un sunaddr; sunaddr.sun_family = AF_UNIX;',
260                     define='HAVE_UNIXSOCKET')
261
262
263     conf.CHECK_CODE('''
264                     struct stat st;
265                     char tpl[20]="/tmp/test.XXXXXX";
266                     int fd = mkstemp(tpl);
267                     if (fd == -1) exit(1);
268                     unlink(tpl);
269                     if (fstat(fd, &st) != 0) exit(1);
270                     if ((st.st_mode & 0777) != 0600) exit(1);
271                     exit(0);
272                     ''',
273                     define='HAVE_SECURE_MKSTEMP',
274                     execute=True,
275                     mandatory=True) # lets see if we get a mandatory failure for this one
276
277     if conf.CHECK_CFLAGS('-fvisibility=hidden', 'VISIBILITY_CFLAGS'):
278         conf.CHECK_CODE('''void vis_foo1(void) {}
279                            __attribute__((visibility("default"))) void vis_foo2(void) {}''',
280                         cflags=conf.env.VISIBILITY_CFLAGS,
281                         define='HAVE_VISIBILITY_ATTR')
282
283     if conf.CHECK_FUNCS('getpass getpassphrase'):
284         # if we have both, then we prefer getpassphrase
285         conf.DEFINE(REPLACE_GETPASS_BY_GETPASSPHRASE, 1)
286         conf.DEFINE(REPLACE_GETPASS, 1)
287
288     conf.CHECK_CODE('''#include "getpass.c"
289                        int main(void) { return 0; }''',
290                     addmain=False,
291                     define='REPLACE_GETPASS',
292                     cflags='-DNO_CONFIG_H')
293
294 def build(bld):
295     bld.set_rpath()
296
297     # libreplace needs to put the library in the right build groups
298     # as libreplace is a base library for everything, even for our
299     # compilers, we need libreplace to build very early
300     bld.SETUP_BUILD_GROUPS()
301
302     REPLACE_SOURCE = 'replace.c snprintf.c'
303
304     bld.SAMBA_LIBRARY('replace',
305                       source=REPLACE_SOURCE,
306                       group='base_libraries',
307                       deps='LIBREPLACE_GETPASS')
308
309     TEST_SOURCES = '''test/testsuite.c test/main.c test/strptime.c
310                       test/os2_delete.c test/getifaddrs.c'''
311
312     bld.SAMBA_BINARY('replace_testsuite',
313                      TEST_SOURCES,
314                      deps='replace')
315
316     NET_SOURCES = []
317     if bld.CONFIG_SET('HAVE_INET_NTOA'):  NET_SOURCES.append('inet_ntoa.c')
318     if bld.CONFIG_SET('HAVE_INET_ATON'):  NET_SOURCES.append('inet_aton.c')
319     if bld.CONFIG_SET('HAVE_INET_NTOP'):  NET_SOURCES.append('inet_ntop.c')
320     if bld.CONFIG_SET('HAVE_INET_PTON'):  NET_SOURCES.append('inet_pton.c')
321     if bld.CONFIG_SET('HAVE_SOCKETPAIR'): NET_SOURCES.append('socketpair.c')
322
323     bld.SAMBA_SUBSYSTEM('LIBREPLACE_NETWORK', NET_SOURCES, deps='replace')
324
325
326     CRYPT_SOURCES = []
327     if not 'HAVE_CRYPT' in bld.env: CRYPT_SOURCES.append('crypt.c')
328
329     bld.SAMBA_SUBSYSTEM('LIBREPLACE_EXT', CRYPT_SOURCES)
330
331     bld.SAMBA_SUBSYSTEM('LIBREPLACE_GETPASS', 'getpass.c',
332                         enabled=bld.CONFIG_SET('REPLACE_GETPASS'))
333
334     bld.CHECK_PROJECT_RULES()