wafbuild: merge the missing IBM compiler Werror flag "-qhalt=w" to waf
[vlendec/samba-autobuild/.git] / lib / replace / wscript
1 #!/usr/bin/env python
2
3 APPNAME = 'libreplace'
4 VERSION = '1.2.1'
5
6 blddir = 'bin'
7
8 import sys, os, Utils
9
10 # find the buildtools directory
11 srcdir = '.'
12 while not os.path.exists(srcdir+'/buildtools') and len(srcdir.split('/')) < 5:
13     srcdir = '../' + srcdir
14 sys.path.insert(0, srcdir + '/buildtools/wafsamba')
15
16 import wafsamba, samba_dist
17 import Options, os, preproc
18
19 samba_dist.DIST_DIRS('lib/replace buildtools:buildtools')
20
21 def set_options(opt):
22     opt.BUILTIN_DEFAULT('NONE')
23     opt.PRIVATE_EXTENSION_DEFAULT('')
24     opt.RECURSE('buildtools/wafsamba')
25
26 @wafsamba.runonce
27 def configure(conf):
28     conf.RECURSE('buildtools/wafsamba')
29
30     conf.env.standalone_replace = conf.IN_LAUNCH_DIR()
31
32     conf.DEFINE('HAVE_LIBREPLACE', 1)
33     conf.DEFINE('LIBREPLACE_NETWORK_CHECKS', 1)
34
35     # on Tru64 certain features are only available with _OSF_SOURCE set to 1
36     # and _XOPEN_SOURCE set to 600
37     if conf.env['SYSTEM_UNAME_SYSNAME'] == 'OSF1':
38         conf.DEFINE('_OSF_SOURCE', 1, add_to_cflags=True)
39         conf.DEFINE('_XOPEN_SOURCE', 600, add_to_cflags=True)
40
41     # SCM_RIGHTS is only avail if _XOPEN_SOURCE iŃ• defined on IRIX
42     if conf.env['SYSTEM_UNAME_SYSNAME'] == 'IRIX':
43         conf.DEFINE('_XOPEN_SOURCE', 600, add_to_cflags=True)
44         conf.DEFINE('_BSD_TYPES', 1, add_to_cflags=True)
45
46     # Try to find the right extra flags for C99 initialisers
47     for f in ["", "-AC99", "-qlanglvl=extc99", "-qlanglvl=stdc99", "-c99"]:
48         if conf.CHECK_CFLAGS([f], '''
49 struct foo {int x;char y;};
50 struct foo bar = { .y = 'X', .x = 1 };
51 '''):
52             if f != "":
53                 conf.ADD_CFLAGS(f)
54             break
55
56     # Try to find the right extra flags for -Werror behaviour
57     for f in ["-Werror", "-w2", "-errwarn=%all", "-qhalt=w"]:
58         if conf.CHECK_CFLAGS([f], '''
59 '''):
60             if not 'WERROR_CFLAGS' in conf.env:
61                 conf.env['WERROR_CFLAGS'] = []
62             conf.env['WERROR_CFLAGS'].extend([f])
63             break
64
65     conf.CHECK_HEADERS('linux/types.h crypt.h locale.h acl/libacl.h compat.h')
66     conf.CHECK_HEADERS('acl/libacl.h attr/xattr.h compat.h ctype.h dustat.h')
67     conf.CHECK_HEADERS('fcntl.h fnmatch.h glob.h history.h krb5.h langinfo.h')
68     conf.CHECK_HEADERS('libaio.h locale.h ndir.h pwd.h')
69     conf.CHECK_HEADERS('shadow.h sys/acl.h')
70     conf.CHECK_HEADERS('sys/attributes.h attr/attributes.h sys/capability.h sys/dir.h sys/epoll.h')
71     conf.CHECK_HEADERS('sys/fcntl.h sys/filio.h sys/filsys.h sys/fs/s5param.h sys/fs/vx/quota.h')
72     conf.CHECK_HEADERS('sys/id.h sys/ioctl.h sys/ipc.h sys/mman.h sys/mode.h sys/ndir.h sys/priv.h')
73     conf.CHECK_HEADERS('sys/resource.h sys/security.h sys/shm.h sys/statfs.h sys/statvfs.h sys/termio.h')
74     conf.CHECK_HEADERS('sys/vfs.h sys/xattr.h termio.h termios.h sys/file.h')
75     conf.CHECK_HEADERS('sys/wait.h sys/stat.h malloc.h grp.h')
76     conf.CHECK_HEADERS('sys/select.h setjmp.h utime.h sys/syslog.h syslog.h')
77     conf.CHECK_HEADERS('stdarg.h vararg.h sys/mount.h mntent.h')
78     conf.CHECK_HEADERS('stropts.h unix.h string.h strings.h sys/param.h limits.h')
79     conf.CHECK_HEADERS('''sys/socket.h netinet/in.h netdb.h arpa/inet.h netinet/in_systm.h
80                           netinet/ip.h netinet/tcp.h netinet/in_ip.h
81                           sys/sockio.h sys/un.h''', together=True)
82     conf.CHECK_HEADERS('sys/uio.h ifaddrs.h direct.h dirent.h')
83     conf.CHECK_HEADERS('windows.h winsock2.h ws2tcpip.h')
84     conf.CHECK_HEADERS('libintl.h errno.h')
85     conf.CHECK_HEADERS('gcrypt.h getopt.h iconv.h')
86     conf.CHECK_HEADERS('sys/inotify.h memory.h nss.h sasl/sasl.h')
87     conf.CHECK_HEADERS('security/pam_appl.h zlib.h asm/unistd.h')
88     conf.CHECK_HEADERS('aio.h sys/unistd.h rpc/rpc.h rpc/nettype.h alloca.h float.h')
89
90     conf.CHECK_HEADERS('rpcsvc/nis.h rpcsvc/ypclnt.h sys/prctl.h sys/sysctl.h')
91     conf.CHECK_HEADERS('sys/fileio.h sys/filesys.h sys/dustat.h sys/sysmacros.h')
92     conf.CHECK_HEADERS('xfs/libxfs.h netgroup.h')
93
94     conf.CHECK_CODE('', headers='rpc/rpc.h rpcsvc/yp_prot.h', define='HAVE_RPCSVC_YP_PROT_H')
95
96     conf.CHECK_HEADERS('valgrind.h valgrind/valgrind.h valgrind/memcheck.h')
97     conf.CHECK_HEADERS('nss_common.h nsswitch.h ns_api.h')
98     conf.CHECK_HEADERS('sys/extattr.h sys/ea.h sys/proplist.h sys/cdefs.h')
99     conf.CHECK_HEADERS('utmp.h utmpx.h lastlog.h malloc.h')
100     conf.CHECK_HEADERS('syscall.h sys/syscall.h inttypes.h')
101
102     conf.CHECK_TYPES('"long long" intptr_t uintptr_t ptrdiff_t comparison_fn_t')
103     conf.CHECK_TYPE('_Bool', define='HAVE__Bool')
104     conf.CHECK_TYPE('bool', define='HAVE_BOOL')
105
106     conf.CHECK_TYPE('int8_t', 'char')
107     conf.CHECK_TYPE('uint8_t', 'unsigned char')
108     conf.CHECK_TYPE('int16_t', 'short')
109     conf.CHECK_TYPE('uint16_t', 'unsigned short')
110     conf.CHECK_TYPE('int32_t', 'int')
111     conf.CHECK_TYPE('uint32_t', 'unsigned')
112     conf.CHECK_TYPE('int64_t', 'long long')
113     conf.CHECK_TYPE('uint64_t', 'unsigned long long')
114     conf.CHECK_TYPE('size_t', 'unsigned int')
115     conf.CHECK_TYPE('ssize_t', 'int')
116     conf.CHECK_TYPE('ino_t', 'unsigned')
117     conf.CHECK_TYPE('loff_t', 'off_t')
118     conf.CHECK_TYPE('offset_t', 'loff_t')
119     conf.CHECK_TYPE('volatile int', define='HAVE_VOLATILE')
120     conf.CHECK_TYPE('uint_t', 'unsigned int')
121     conf.CHECK_TYPE('blksize_t', 'long', headers='sys/types.h sys/stat.h unistd.h')
122     conf.CHECK_TYPE('blkcnt_t', 'long', headers='sys/types.h sys/stat.h unistd.h')
123
124     conf.CHECK_SIZEOF('bool char int "long long" long short size_t ssize_t')
125     conf.CHECK_SIZEOF('int8_t uint8_t int16_t uint16_t int32_t uint32_t int64_t uint64_t')
126     conf.CHECK_SIZEOF('void*', define='SIZEOF_VOID_P')
127     conf.CHECK_SIZEOF('off_t dev_t ino_t time_t')
128
129     conf.CHECK_TYPES('socklen_t', headers='sys/socket.h')
130     conf.CHECK_TYPE_IN('struct ifaddrs', 'ifaddrs.h')
131     conf.CHECK_TYPE_IN('struct addrinfo', 'netdb.h')
132     conf.CHECK_TYPE_IN('struct sockaddr', 'sys/socket.h')
133     conf.CHECK_CODE('struct sockaddr_in6 x', define='HAVE_STRUCT_SOCKADDR_IN6',
134                     headers='sys/socket.h netdb.h netinet/in.h')
135     conf.CHECK_TYPE_IN('struct sockaddr_storage', 'sys/socket.h')
136     conf.CHECK_TYPE_IN('sa_family_t', 'sys/socket.h')
137
138     conf.CHECK_TYPE_IN('sig_atomic_t', 'signal.h', define='HAVE_SIG_ATOMIC_T_TYPE')
139
140     conf.CHECK_FUNCS_IN('''inet_ntoa inet_aton inet_ntop inet_pton connect gethostbyname
141                            getaddrinfo getnameinfo freeaddrinfo gai_strerror socketpair''',
142                         'socket nsl', checklibc=True,
143                         headers='sys/socket.h netinet/in.h arpa/inet.h netdb.h')
144
145     # Some old Linux systems have broken header files and
146     # miss the IPV6_V6ONLY define in netinet/in.h,
147     # but have it in linux/in6.h.
148     # We can't include both files so we just check if the value
149     # if defined and do the replacement in system/network.h
150     if not conf.CHECK_VARIABLE('IPV6_V6ONLY',
151                                headers='sys/socket.h netdb.h netinet/in.h'):
152         conf.CHECK_CODE('''
153                         #include <linux/in6.h>
154                         #if (IPV6_V6ONLY != 26)
155                         #error no IPV6_V6ONLY support on linux
156                         #endif
157                         int main(void) { return IPV6_V6ONLY; }
158                         ''',
159                         define='HAVE_LINUX_IPV6_V6ONLY_26',
160                         addmain=False,
161                         msg='Checking for IPV6_V6ONLY in linux/in6.h',
162                         local_include=False)
163
164     conf.CHECK_CODE('''
165                        struct sockaddr_storage sa_store;
166                        struct addrinfo *ai = NULL;
167                        struct in6_addr in6addr;
168                        int idx = if_nametoindex("iface1");
169                        int s = socket(AF_INET6, SOCK_STREAM, 0);
170                        int ret = getaddrinfo(NULL, NULL, NULL, &ai);
171                        if (ret != 0) {
172                            const char *es = gai_strerror(ret);
173                        }
174                        freeaddrinfo(ai);
175                        {
176                           int val = 1;
177                           #ifdef HAVE_LINUX_IPV6_V6ONLY_26
178                           #define IPV6_V6ONLY 26
179                           #endif
180                           ret = setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY,
181                                            (const void *)&val, sizeof(val));
182                        }
183                        ''',
184                     define='HAVE_IPV6',
185                     lib='nsl socket',
186                     headers='sys/socket.h netdb.h netinet/in.h')
187
188     # these may be builtins, so we need the link=False strategy
189     conf.CHECK_FUNCS('strdup memmem printf memset memcpy memmove strcpy strncpy bzero', link=False)
190
191     conf.CHECK_FUNCS('shl_load shl_unload shl_findsym')
192     conf.CHECK_FUNCS('pipe strftime srandom random srand rand usleep setbuffer')
193     conf.CHECK_FUNCS('lstat getpgrp utime utimes setuid seteuid setreuid setresuid setgid setegid')
194     conf.CHECK_FUNCS('setregid setresgid chroot strerror vsyslog setlinebuf mktime')
195     conf.CHECK_FUNCS('ftruncate chsize rename waitpid wait4')
196     conf.CHECK_FUNCS('initgroups pread pwrite strndup strcasestr')
197     conf.CHECK_FUNCS('strtok_r mkdtemp dup2 dprintf vdprintf isatty chown lchown')
198     conf.CHECK_FUNCS('link readlink symlink realpath snprintf vsnprintf')
199     conf.CHECK_FUNCS('asprintf vasprintf setenv unsetenv strnlen strtoull __strtoull')
200     conf.CHECK_FUNCS('strtouq strtoll __strtoll strtoq memalign posix_memalign')
201
202     # libbsd on some platforms provides strlcpy and strlcat
203     if not conf.CHECK_FUNCS('strlcpy strlcat'):
204         conf.CHECK_FUNCS_IN('strlcpy strlcat', 'bsd', headers='bsd/string.h',
205                 checklibc=True)
206     if not conf.CHECK_FUNCS('getpeereid'):
207         conf.CHECK_FUNCS_IN('getpeereid', 'bsd', headers='sys/types.h bsd/unistd.h')
208     if not conf.CHECK_FUNCS_IN('setproctitle', 'bsd', headers='sys/types.h bsd/unistd.h'):
209         conf.CHECK_FUNCS_IN('setproctitle', 'setproctitle', headers='setproctitle.h')
210
211     conf.CHECK_CODE('''
212                 struct ucred cred;
213                 socklen_t cred_len;
214                 int ret = getsockopt(0, SOL_SOCKET, SO_PEERCRED, &cred, &cred_len);''',
215                 'HAVE_PEERCRED',
216                 msg="Checking whether we can use SO_PEERCRED to get socket credentials",
217                 headers='sys/types.h sys/socket.h')
218
219     #Some OS (ie. freebsd) return EINVAL if the convertion could not be done, it's not what we expect
220     #Let's detect those cases
221     if conf.CONFIG_SET('HAVE_STRTOLL'):
222         conf.CHECK_CODE('''
223                         long long nb = strtoll("Text", NULL, 0);
224                         if (errno == EINVAL) {
225                             return 0;
226                         } else {
227                             return 1;
228                         }
229                         ''',
230                         msg="Checking correct behavior of strtoll",
231                         headers = 'errno.h',
232                         execute = True,
233                         define = 'HAVE_BSD_STRTOLL',
234                         )
235     conf.CHECK_FUNCS('if_nametoindex strerror_r')
236     conf.CHECK_FUNCS('getdirentries getdents syslog')
237     conf.CHECK_FUNCS('gai_strerror get_current_dir_name')
238     conf.CHECK_FUNCS('timegm getifaddrs freeifaddrs mmap setgroups syscall setsid')
239     conf.CHECK_FUNCS('getgrent_r getgrgid_r getgrnam_r getgrouplist getpagesize')
240     conf.CHECK_FUNCS('getpwent_r getpwnam_r getpwuid_r epoll_create')
241
242     conf.SET_TARGET_TYPE('attr', 'EMPTY')
243
244     xattr_headers='sys/attributes.h attr/xattr.h sys/xattr.h'
245
246     conf.CHECK_FUNCS_IN('''
247 fgetxattr flistea flistxattr
248 fremovexattr fsetxattr getxattr
249 listxattr removexattr setxattr
250 ''', 'attr', checklibc=True, headers=xattr_headers)
251
252     # We need to check for linux xattrs first, as we do not wish to link to -lattr
253     # (the XFS compat API) on Linux systems with the native xattr API
254     if not conf.CONFIG_SET('HAVE_GETXATTR'):
255         conf.CHECK_FUNCS_IN('''
256 attr_get attr_getf attr_list attr_listf attropen attr_remove
257 attr_removef attr_set attr_setf extattr_delete_fd extattr_delete_file
258 extattr_get_fd extattr_get_file extattr_list_fd extattr_list_file
259 extattr_set_fd extattr_set_file fgetea flistea
260 fremoveea fsetea getea listea
261 removeea setea
262 ''', 'attr', checklibc=True, headers=xattr_headers)
263
264     if (conf.CONFIG_SET('HAVE_ATTR_LISTF') or
265         conf.CONFIG_SET('HAVE_EXTATTR_LIST_FD') or
266         conf.CONFIG_SET('HAVE_FLISTEA') or
267         conf.CONFIG_SET('HAVE_FLISTXATTR')):
268             conf.DEFINE('HAVE_XATTR_SUPPORT', 1)
269
270     # Darwin has extra options to xattr-family functions
271     conf.CHECK_CODE('getxattr(NULL, NULL, NULL, 0, 0, 0)',
272                     headers=xattr_headers, local_include=False,
273                     define='XATTR_ADDITIONAL_OPTIONS',
274                     msg="Checking whether xattr interface takes additional options")
275
276     conf.CHECK_FUNCS_IN('dlopen dlsym dlerror dlclose', 'dl',
277                         checklibc=True, headers='dlfcn.h dl.h')
278
279     conf.CHECK_C_PROTOTYPE('dlopen', 'void *dlopen(const char* filename, unsigned int flags)',
280                            define='DLOPEN_TAKES_UNSIGNED_FLAGS', headers='dlfcn.h dl.h')
281
282     if conf.CHECK_FUNCS_IN('fdatasync', 'rt', checklibc=True):
283         # some systems are missing the declaration
284         conf.CHECK_DECLS('fdatasync')
285
286     if conf.CHECK_FUNCS_IN('clock_gettime', 'rt', checklibc=True):
287         for c in ['CLOCK_MONOTONIC', 'CLOCK_PROCESS_CPUTIME_ID', 'CLOCK_REALTIME']:
288             conf.CHECK_CODE('''
289                 #if TIME_WITH_SYS_TIME
290                 # include <sys/time.h>
291                 # include <time.h>
292                 #else
293                 # if HAVE_SYS_TIME_H
294                 #  include <sys/time.h>
295                 # else
296                 #  include <time.h>
297                 # endif
298                 #endif
299                 clockid_t clk = %s''' % c,
300                 'HAVE_%s' % c,
301                 msg='Checking whether the clock_gettime clock ID %s is available' % c)
302
303     conf.CHECK_TYPE('struct timespec', headers='sys/time.h time.h')
304
305     # these headers need to be tested as a group on freebsd
306     conf.CHECK_HEADERS(headers='sys/socket.h net/if.h', together=True)
307     conf.CHECK_HEADERS(headers='netinet/in.h arpa/nameser.h resolv.h', together=True)
308     conf.CHECK_FUNCS_IN('res_search', 'resolv', checklibc=True,
309                         headers='netinet/in.h arpa/nameser.h resolv.h')
310
311
312     if not conf.CHECK_FUNCS_IN('gettext', 'intl', checklibc=True, headers='libintl.h'):
313     # Some hosts need lib iconv for linking with lib intl
314     # So we try with flags just in case it helps.
315         oldflags = conf.env['LDFLAGS_INTL']
316         conf.env['LDFLAGS_INTL'] = "-liconv"
317         if not conf.CHECK_LIB('intl'):
318             conf.env['LDFLAGS_INTL'] = oldflags
319         else:
320             conf.CHECK_FUNCS_IN('gettext', 'intl', checklibc=True, headers='libintl.h')
321
322     conf.CHECK_FUNCS_IN('dgettext gettext', 'intl', headers='libintl.h')
323     conf.CHECK_FUNCS_IN('pthread_create', 'pthread', checklibc=True, headers='pthread.h')
324
325     conf.CHECK_FUNCS_IN('crypt', 'crypt', checklibc=True)
326
327     conf.CHECK_VARIABLE('rl_event_hook', define='HAVE_DECL_RL_EVENT_HOOK', always=True,
328                         headers='readline.h readline/readline.h readline/history.h')
329
330     conf.CHECK_DECLS('snprintf vsnprintf asprintf vasprintf')
331
332     conf.CHECK_DECLS('errno', headers='errno.h', reverse=True)
333     conf.CHECK_DECLS('environ getgrent_r getpwent_r', reverse=True, headers='pwd.h grp.h')
334     conf.CHECK_DECLS('pread pwrite setenv setresgid setresuid', reverse=True)
335
336     if conf.CONFIG_SET('HAVE_EPOLL_CREATE') and conf.CONFIG_SET('HAVE_SYS_EPOLL_H'):
337         conf.DEFINE('HAVE_EPOLL', 1)
338
339     conf.CHECK_HEADERS('poll.h')
340     conf.CHECK_FUNCS('poll')
341
342     conf.CHECK_FUNCS('strptime')
343     conf.CHECK_DECLS('strptime', headers='time.h')
344     conf.CHECK_CODE('''#define LIBREPLACE_CONFIGURE_TEST_STRPTIME
345                        #include "test/strptime.c"''',
346                        define='HAVE_WORKING_STRPTIME',
347                        execute=True,
348                        addmain=False,
349                        msg='Checking for working strptime')
350
351     conf.CHECK_CODE('gettimeofday(NULL, NULL)', 'HAVE_GETTIMEOFDAY_TZ', execute=False)
352
353     conf.CHECK_CODE('#include "test/snprintf.c"',
354                     define="HAVE_C99_VSNPRINTF",
355                     execute=True,
356                     addmain=False,
357                     msg="Checking for C99 vsnprintf")
358
359     conf.CHECK_CODE('#include "test/shared_mmap.c"',
360                     addmain=False, add_headers=False, execute=True,
361                     define='HAVE_SHARED_MMAP',
362                     msg="Checking for HAVE_SHARED_MMAP")
363
364     conf.CHECK_CODE('#include "test/shared_mremap.c"',
365                     addmain=False, add_headers=False, execute=True,
366                     define='HAVE_MREMAP',
367                     msg="Checking for HAVE_MREMAP")
368
369     # OpenBSD (and I've heard HPUX) doesn't sync between mmap and write.
370     # FIXME: Anything other than a 0 or 1 exit code should abort configure!
371     conf.CHECK_CODE('#include "test/incoherent_mmap.c"',
372                     addmain=False, add_headers=False, execute=True,
373                     define='HAVE_INCOHERENT_MMAP',
374                     msg="Checking for HAVE_INCOHERENT_MMAP")
375
376     conf.SAMBA_BUILD_ENV()
377
378     conf.CHECK_CODE('''
379                     typedef struct {unsigned x;} FOOBAR;
380                     #define X_FOOBAR(x) ((FOOBAR) { x })
381                     #define FOO_ONE X_FOOBAR(1)
382                     FOOBAR f = FOO_ONE;
383                     static const struct {
384                         FOOBAR y;
385                     } f2[] = {
386                         {FOO_ONE}
387                     };
388                     static const FOOBAR f3[] = {FOO_ONE};
389                     ''',
390                     define='HAVE_IMMEDIATE_STRUCTURES')
391
392     conf.CHECK_CODE('mkdir("foo",0777)', define='HAVE_MKDIR_MODE', headers='sys/stat.h')
393
394     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtim.tv_nsec', define='HAVE_STAT_TV_NSEC',
395                                 headers='sys/stat.h')
396     # we need the st_rdev test under two names
397     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_rdev',
398                                 define='HAVE_STRUCT_STAT_ST_RDEV',
399                                 headers='sys/stat.h')
400     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_rdev', define='HAVE_ST_RDEV',
401                                 headers='sys/stat.h')
402     conf.CHECK_STRUCTURE_MEMBER('struct sockaddr_storage', 'ss_family',
403                                 headers='sys/socket.h netinet/in.h')
404     conf.CHECK_STRUCTURE_MEMBER('struct sockaddr_storage', '__ss_family',
405                                 headers='sys/socket.h netinet/in.h')
406
407
408     if conf.CHECK_STRUCTURE_MEMBER('struct sockaddr', 'sa_len',
409                                    headers='sys/socket.h netinet/in.h',
410                                    define='HAVE_SOCKADDR_SA_LEN'):
411         # the old build system produced both defines
412         conf.DEFINE('HAVE_STRUCT_SOCKADDR_SA_LEN', 1)
413
414     conf.CHECK_STRUCTURE_MEMBER('struct sockaddr_in', 'sin_len',
415                                 headers='sys/socket.h netinet/in.h',
416                                 define='HAVE_SOCK_SIN_LEN')
417
418     conf.CHECK_CODE('struct sockaddr_un sunaddr; sunaddr.sun_family = AF_UNIX;',
419                     define='HAVE_UNIXSOCKET', headers='sys/socket.h sys/un.h')
420
421
422     conf.CHECK_CODE('''
423                     struct stat st;
424                     char tpl[20]="/tmp/test.XXXXXX";
425                     char tpl2[20]="/tmp/test.XXXXXX";
426                     int fd = mkstemp(tpl);
427                     int fd2 = mkstemp(tpl2);
428                     if (fd == -1) {
429                           if (fd2 != -1) {
430                                   unlink(tpl2);
431                           }
432                           exit(1);
433                     }
434                     if (fd2 == -1) exit(1);
435                     unlink(tpl);
436                     unlink(tpl2);
437                     if (fstat(fd, &st) != 0) exit(1);
438                     if ((st.st_mode & 0777) != 0600) exit(1);
439                     if (strcmp(tpl, "/tmp/test.XXXXXX") == 0) {
440                           exit(1);
441                     }
442                     if (strcmp(tpl, tpl2) == 0) {
443                           exit(1);
444                     }
445                     exit(0);
446                     ''',
447                     define='HAVE_SECURE_MKSTEMP',
448                     execute=True,
449                     mandatory=True) # lets see if we get a mandatory failure for this one
450
451     if conf.CHECK_CFLAGS('-fvisibility=hidden'):
452         conf.env.VISIBILITY_CFLAGS = '-fvisibility=hidden'
453         conf.CHECK_CODE('''void vis_foo1(void) {}
454                            __attribute__((visibility("default"))) void vis_foo2(void) {}''',
455                         cflags=conf.env.VISIBILITY_CFLAGS,
456                         define='HAVE_VISIBILITY_ATTR')
457
458     # look for a method of finding the list of network interfaces
459     for method in ['HAVE_IFACE_GETIFADDRS', 'HAVE_IFACE_AIX', 'HAVE_IFACE_IFCONF', 'HAVE_IFACE_IFREQ']:
460         if conf.CHECK_CODE('''
461                            #define %s 1
462                            #define NO_CONFIG_H 1
463                            #define AUTOCONF_TEST 1
464                            #define SOCKET_WRAPPER_NOT_REPLACE
465                            #include "replace.c"
466                            #include "inet_ntop.c"
467                            #include "snprintf.c"
468                            #include "getifaddrs.c"
469                            #define getifaddrs_test main
470                            #include "test/getifaddrs.c"
471                            ''' % method,
472                            method,
473                            lib='nsl socket',
474                            addmain=False,
475                            execute=True):
476             break
477
478     if conf.CHECK_FUNCS('getpass getpassphrase'):
479         # if we have both, then we prefer getpassphrase
480         conf.DEFINE('REPLACE_GETPASS_BY_GETPASSPHRASE', 1)
481         conf.DEFINE('REPLACE_GETPASS', 1)
482     else:
483         conf.CHECK_CODE('''#include "getpass.c"
484                        int main(void) { return 0; }''',
485                     addmain=False,
486                     define='REPLACE_GETPASS',
487                     cflags='-DNO_CONFIG_H')
488
489     conf.RECURSE('system')
490     conf.SAMBA_CONFIG_H()
491
492
493 REPLACEMENT_FUNCTIONS = {
494     'replace.c': ['ftruncate', 'strlcpy', 'strlcat', 'mktime', 'initgroups',
495                   'memmove', 'strdup', 'setlinebuf', 'vsyslog', 'strnlen',
496                   'strndup', 'waitpid', 'seteuid', 'setegid', 'chroot',
497                   'mkstemp', 'mkdtemp', 'pread', 'pwrite', 'strcasestr',
498                   'strtok_r', 'strtoll', 'strtoull', 'setenv', 'unsetenv',
499                   'utime', 'utimes', 'dup2', 'chown', 'link', 'readlink',
500                   'symlink', 'lchown', 'realpath', 'memmem', 'vdprintf',
501                   'dprintf', 'get_current_dir_name',
502                   'strerror_r', 'clock_gettime'],
503     'timegm.c': ['timegm'],
504     # Note: C99_VSNPRINTF is not a function, but a special condition
505     # for replacement
506     'snprintf.c': ['C99_VSNPRINTF', 'snprintf', 'vsnprintf', 'asprintf', 'vasprintf'],
507     # Note: WORKING_STRPTIME is not a function, but a special condition
508     # for replacement
509     'strptime.c': ['WORKING_STRPTIME', 'strptime'],
510     }
511
512
513 def build(bld):
514     bld.RECURSE('buildtools/wafsamba')
515
516     REPLACE_HOSTCC_SOURCE = ''
517
518     for filename, functions in REPLACEMENT_FUNCTIONS.iteritems():
519         for function in functions:
520             if not bld.CONFIG_SET('HAVE_%s' % function.upper()):
521                 REPLACE_HOSTCC_SOURCE += ' %s' % filename
522                 break
523
524     extra_libs = ''
525     if bld.CONFIG_SET('HAVE_LIBBSD'): extra_libs += ' bsd'
526
527     bld.SAMBA_SUBSYSTEM('LIBREPLACE_HOSTCC',
528         REPLACE_HOSTCC_SOURCE,
529         use_hostcc=True,
530         use_global_deps=False,
531         cflags='-DSOCKET_WRAPPER_DISABLE=1 -DNSS_WRAPPER_DISABLE=1 -DUID_WRAPPER_DISABLE=1 -D_SAMBA_HOSTCC_',
532         group='compiler_libraries',
533         deps = extra_libs
534     )
535
536     REPLACE_SOURCE = REPLACE_HOSTCC_SOURCE
537
538     if bld.CONFIG_SET('REPLACE_GETPASS'):        REPLACE_SOURCE += ' getpass.c'
539     if not bld.CONFIG_SET('HAVE_CRYPT'):         REPLACE_SOURCE += ' crypt.c'
540     if not bld.CONFIG_SET('HAVE_DLOPEN'):        REPLACE_SOURCE += ' dlfcn.c'
541     if not bld.CONFIG_SET('HAVE_POLL'):          REPLACE_SOURCE += ' poll.c'
542
543     if not bld.CONFIG_SET('HAVE_SOCKETPAIR'):    REPLACE_SOURCE += ' socketpair.c'
544     if not bld.CONFIG_SET('HAVE_CONNECT'):       REPLACE_SOURCE += ' socket.c'
545     if not bld.CONFIG_SET('HAVE_GETIFADDRS'):    REPLACE_SOURCE += ' getifaddrs.c'
546     if not bld.CONFIG_SET('HAVE_GETADDRINFO'):   REPLACE_SOURCE += ' getaddrinfo.c'
547     if not bld.CONFIG_SET('HAVE_INET_NTOA'):     REPLACE_SOURCE += ' inet_ntoa.c'
548     if not bld.CONFIG_SET('HAVE_INET_ATON'):     REPLACE_SOURCE += ' inet_aton.c'
549     if not bld.CONFIG_SET('HAVE_INET_NTOP'):     REPLACE_SOURCE += ' inet_ntop.c'
550     if not bld.CONFIG_SET('HAVE_INET_PTON'):     REPLACE_SOURCE += ' inet_pton.c'
551     if not bld.CONFIG_SET('HAVE_GETXATTR') or bld.CONFIG_SET('XATTR_ADDITIONAL_OPTIONS'):
552                                                  REPLACE_SOURCE += ' xattr.c'
553
554     bld.SAMBA_LIBRARY('replace',
555                       source=REPLACE_SOURCE,
556                       group='base_libraries',
557                       # FIXME: Ideally symbols should be hidden here so they 
558                       # don't appear in the global namespace when Samba 
559                       # libraries are loaded, but this doesn't appear to work 
560                       # at the moment:
561                       # hide_symbols=bld.BUILTIN_LIBRARY('replace'),
562                       private_library=True,
563                       deps='crypt dl nsl socket rt attr' + extra_libs)
564
565     bld.SAMBA_SUBSYSTEM('replace-test',
566                       source='''test/testsuite.c test/strptime.c
567                       test/os2_delete.c test/getifaddrs.c''',
568                       deps='replace')
569
570     if bld.env.standalone_replace:
571         bld.SAMBA_BINARY('replace_testsuite',
572                          source='test/main.c',
573                          deps='replace replace-test',
574                          install=False)
575
576     # build replacements for stdint.h and stdbool.h if needed
577     bld.SAMBA_GENERATOR('replace_stdint_h',
578                         rule='cp ${SRC} ${TGT}',
579                         source='hdr_replace.h',
580                         target='stdint.h',
581                         enabled = not bld.CONFIG_SET('HAVE_STDINT_H'))
582     bld.SAMBA_GENERATOR('replace_stdbool_h',
583                         rule='cp ${SRC} ${TGT}',
584                         source='hdr_replace.h',
585                         target='stdbool.h',
586                         enabled = not bld.CONFIG_SET('HAVE_STDBOOL_H'))
587
588 def dist():
589     '''makes a tarball for distribution'''
590     samba_dist.dist()