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