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