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