lib/util: Add signal.h include
[gd/samba-autobuild/.git] / lib / replace / wscript
1 #!/usr/bin/env python
2
3 APPNAME = 'libreplace'
4 VERSION = '1.2.1'
5
6 import sys
7 import os
8
9 # find the buildtools directory
10 top = '.'
11 while not os.path.exists(top+'/buildtools') and len(top.split('/')) < 5:
12     top = top + '/..'
13 sys.path.insert(0, top + '/buildtools/wafsamba')
14
15 out = 'bin'
16
17 import wafsamba
18 from wafsamba import samba_dist
19 from waflib import Options, Utils, Logs, Context
20
21 samba_dist.DIST_DIRS('lib/replace buildtools:buildtools third_party/waf:third_party/waf')
22
23 def options(opt):
24     opt.BUILTIN_DEFAULT('NONE')
25     opt.PRIVATE_EXTENSION_DEFAULT('')
26     opt.RECURSE('buildtools/wafsamba')
27
28 @Utils.run_once
29 def configure(conf):
30     conf.RECURSE('buildtools/wafsamba')
31
32     conf.env.standalone_replace = conf.IN_LAUNCH_DIR()
33
34     conf.DEFINE('BOOL_DEFINED', 1)
35     conf.DEFINE('HAVE_LIBREPLACE', 1)
36     conf.DEFINE('LIBREPLACE_NETWORK_CHECKS', 1)
37
38     conf.CHECK_HEADERS('linux/types.h crypt.h locale.h acl/libacl.h compat.h')
39     conf.CHECK_HEADERS('acl/libacl.h attr/xattr.h compat.h ctype.h dustat.h')
40     conf.CHECK_HEADERS('fcntl.h fnmatch.h glob.h history.h krb5.h langinfo.h')
41     conf.CHECK_HEADERS('locale.h ndir.h pwd.h')
42     conf.CHECK_HEADERS('shadow.h sys/acl.h')
43     conf.CHECK_HEADERS('sys/attributes.h attr/attributes.h sys/capability.h sys/dir.h sys/epoll.h')
44     conf.CHECK_HEADERS('port.h')
45     conf.CHECK_HEADERS('sys/fcntl.h sys/filio.h sys/filsys.h sys/fs/s5param.h')
46     conf.CHECK_HEADERS('sys/id.h sys/ioctl.h sys/ipc.h sys/mman.h sys/mode.h sys/ndir.h sys/priv.h')
47     conf.CHECK_HEADERS('sys/resource.h sys/security.h sys/shm.h sys/statfs.h sys/statvfs.h sys/termio.h')
48     conf.CHECK_HEADERS('sys/vfs.h sys/xattr.h termio.h termios.h sys/file.h')
49     conf.CHECK_HEADERS('sys/ucontext.h sys/wait.h sys/stat.h')
50
51     if not conf.CHECK_DECLS('malloc', headers='stdlib.h'):
52         conf.CHECK_HEADERS('malloc.h')
53
54     conf.CHECK_HEADERS('grp.h')
55     conf.CHECK_HEADERS('sys/select.h setjmp.h utime.h sys/syslog.h syslog.h')
56     conf.CHECK_HEADERS('stdarg.h vararg.h sys/mount.h mntent.h')
57     conf.CHECK_HEADERS('stropts.h unix.h string.h strings.h sys/param.h limits.h')
58     conf.CHECK_HEADERS('''sys/socket.h netinet/in.h netdb.h arpa/inet.h netinet/in_systm.h
59                           netinet/ip.h netinet/tcp.h netinet/in_ip.h
60                           sys/sockio.h sys/un.h''', together=True)
61     conf.CHECK_HEADERS('sys/uio.h ifaddrs.h direct.h dirent.h')
62     conf.CHECK_HEADERS('windows.h winsock2.h ws2tcpip.h')
63     conf.CHECK_HEADERS('errno.h')
64     conf.CHECK_HEADERS('getopt.h iconv.h')
65     conf.CHECK_HEADERS('memory.h nss.h sasl/sasl.h')
66
67     conf.CHECK_FUNCS_IN('inotify_init', 'inotify', checklibc=True,
68                         headers='sys/inotify.h')
69
70     conf.CHECK_HEADERS('security/pam_appl.h zlib.h asm/unistd.h')
71     conf.CHECK_HEADERS('sys/unistd.h alloca.h float.h')
72
73     conf.SET_TARGET_TYPE('tirpc', 'EMPTY')
74
75     if conf.CHECK_CODE(
76             '\n#ifndef _TIRPC_RPC_H\n#error "no tirpc headers in system path"\n#endif\n',
77             'HAVE_RPC_RPC_HEADERS',
78             headers=['rpc/rpc.h', 'rpc/nettype.h'],
79             msg='Checking for tirpc rpc headers in default system path'):
80         if conf.CONFIG_SET('HAVE_RPC_RPC_H'):
81             conf.undefine('HAVE_RPC_RPC_H')
82
83     if not conf.CONFIG_SET('HAVE_RPC_RPC_H'):
84         if conf.CHECK_CFG(package='libtirpc', args='--cflags --libs',
85                        msg='Checking for libtirpc headers',
86                        uselib_store='TIRPC'):
87             conf.CHECK_HEADERS('rpc/rpc.h rpc/nettype.h', lib='tirpc', together=True)
88             conf.SET_TARGET_TYPE('tirpc', 'SYSLIB')
89     if not conf.CONFIG_SET('HAVE_RPC_RPC_H'):
90         if conf.CHECK_CFG(package='libntirpc', args='--cflags',
91                        msg='Checking for libntirpc headers',
92                        uselib_store='TIRPC'):
93             conf.CHECK_HEADERS('rpc/rpc.h rpc/nettype.h', lib='tirpc', together=True)
94             conf.SET_TARGET_TYPE('tirpc', 'SYSLIB')
95     if not conf.CONFIG_SET('HAVE_RPC_RPC_H'):
96             Logs.warn('No rpc/rpc.h header found, tirpc or libntirpc missing?')
97
98     # This file is decprecated with glibc >= 2.30 so we need to check if it
99     # includes a deprecation warning:
100     # #warning "The <sys/sysctl.h> header is deprecated and will be removed."
101     conf.CHECK_CODE('''
102                     #include <sys/sysctl.h>
103                     int main(void) { return 0; }
104                     ''',
105                     define='HAVE_SYS_SYSCTL_H',
106                     cflags=['-Werror=cpp'],
107                     addmain=False,
108                     msg='Checking for header sys/sysctl.h')
109
110     conf.CHECK_HEADERS('sys/fileio.h sys/filesys.h sys/dustat.h sys/sysmacros.h')
111     conf.CHECK_HEADERS('xfs/libxfs.h netgroup.h')
112
113     conf.CHECK_HEADERS('valgrind.h valgrind/valgrind.h')
114     conf.CHECK_HEADERS('valgrind/memcheck.h valgrind/helgrind.h')
115     conf.CHECK_HEADERS('nss_common.h nsswitch.h ns_api.h')
116     conf.CHECK_HEADERS('sys/extattr.h sys/ea.h sys/proplist.h sys/cdefs.h')
117     conf.CHECK_HEADERS('utmp.h utmpx.h lastlog.h')
118     conf.CHECK_HEADERS('syscall.h sys/syscall.h inttypes.h')
119     conf.CHECK_HEADERS('sys/atomic.h stdatomic.h')
120     conf.CHECK_HEADERS('libgen.h')
121
122     if conf.CHECK_CFLAGS('-Wno-format-truncation'):
123         conf.define('HAVE_WNO_FORMAT_TRUNCATION', '1')
124
125     if conf.CHECK_CFLAGS('-Wno-unused-function'):
126         conf.define('HAVE_WNO_UNUSED_FUNCTION', '1')
127
128     if conf.CHECK_CFLAGS('-Wno-strict-overflow'):
129         conf.define('HAVE_WNO_STRICT_OVERFLOW', '1')
130
131     # Check for process set name support
132     conf.CHECK_CODE('''
133                     #include <sys/prctl.h>
134                     int main(void) {
135                         prctl(0);
136                         return 0;
137                     }
138                     ''',
139                     'HAVE_PRCTL',
140                     addmain=False,
141                     headers='sys/prctl.h',
142                     msg='Checking for prctl syscall')
143
144     conf.CHECK_CODE('''
145                     #include <unistd.h>
146                     #ifdef HAVE_FCNTL_H
147                     #include <fcntl.h>
148                     #endif
149                     int main(void) { int fd = open("/dev/null", O_DIRECT); }
150                     ''',
151                     define='HAVE_OPEN_O_DIRECT',
152                     addmain=False,
153                     msg='Checking for O_DIRECT flag to open(2)')
154
155     conf.CHECK_TYPES('"long long" intptr_t uintptr_t ptrdiff_t comparison_fn_t')
156     conf.CHECK_TYPE('_Bool', define='HAVE__Bool')
157     conf.CHECK_TYPE('bool', define='HAVE_BOOL')
158
159     conf.CHECK_TYPE('int8_t', 'char')
160     conf.CHECK_TYPE('uint8_t', 'unsigned char')
161     conf.CHECK_TYPE('int16_t', 'short')
162     conf.CHECK_TYPE('uint16_t', 'unsigned short')
163     conf.CHECK_TYPE('int32_t', 'int')
164     conf.CHECK_TYPE('uint32_t', 'unsigned')
165     conf.CHECK_TYPE('int64_t', 'long long')
166     conf.CHECK_TYPE('uint64_t', 'unsigned long long')
167     conf.CHECK_TYPE('size_t', 'unsigned int')
168     conf.CHECK_TYPE('ssize_t', 'int')
169     conf.CHECK_TYPE('ino_t', 'unsigned')
170     conf.CHECK_TYPE('loff_t', 'off_t')
171     conf.CHECK_TYPE('offset_t', 'loff_t')
172     conf.CHECK_TYPE('volatile int', define='HAVE_VOLATILE')
173     conf.CHECK_TYPE('uint_t', 'unsigned int')
174     conf.CHECK_TYPE('blksize_t', 'long', headers='sys/types.h sys/stat.h unistd.h')
175     conf.CHECK_TYPE('blkcnt_t', 'long', headers='sys/types.h sys/stat.h unistd.h')
176
177     conf.CHECK_SIZEOF('bool char int "long long" long short size_t ssize_t')
178     conf.CHECK_SIZEOF('int8_t uint8_t int16_t uint16_t int32_t uint32_t int64_t uint64_t')
179     conf.CHECK_SIZEOF('void*', define='SIZEOF_VOID_P')
180     conf.CHECK_SIZEOF('off_t dev_t ino_t time_t')
181
182     conf.CHECK_TYPES('socklen_t', headers='sys/socket.h')
183     conf.CHECK_TYPE_IN('struct ifaddrs', 'ifaddrs.h')
184     conf.CHECK_TYPE_IN('struct addrinfo', 'netdb.h')
185     conf.CHECK_TYPE_IN('struct sockaddr', 'sys/socket.h')
186     conf.CHECK_CODE('struct sockaddr_in6 x', define='HAVE_STRUCT_SOCKADDR_IN6',
187                     headers='sys/socket.h netdb.h netinet/in.h')
188     conf.CHECK_TYPE_IN('struct sockaddr_storage', 'sys/socket.h')
189     conf.CHECK_TYPE_IN('sa_family_t', 'sys/socket.h')
190
191     conf.CHECK_TYPE_IN('sig_atomic_t', 'signal.h', define='HAVE_SIG_ATOMIC_T_TYPE')
192     conf.CHECK_FUNCS('sigsetmask siggetmask sigprocmask sigblock sigaction sigset')
193
194     # Those functions are normally available in libc
195     if not conf.CHECK_FUNCS('''
196                             inet_ntoa
197                             inet_aton
198                             inet_ntop
199                             inet_pton
200                             connect
201                             gethostbyname
202                             getaddrinfo
203                             getnameinfo
204                             freeaddrinfo
205                             gai_strerror
206                             socketpair''',
207                             headers='sys/socket.h netinet/in.h arpa/inet.h netdb.h'):
208         conf.CHECK_FUNCS_IN('''
209                             inet_ntoa
210                             inet_aton
211                             inet_ntop
212                             inet_pton
213                             connect
214                             gethostbyname
215                             getaddrinfo
216                             getnameinfo
217                             freeaddrinfo
218                             gai_strerror
219                             socketpair''',
220                             'socket nsl',
221                             headers='sys/socket.h netinet/in.h arpa/inet.h netdb.h')
222         conf.DEFINE('REPLACE_REQUIRES_LIBSOCKET_LIBNSL', 1)
223
224     conf.CHECK_FUNCS('memset_s memset_explicit')
225
226     conf.CHECK_CODE('''
227                     #include <string.h>
228
229                     int main(void)
230                     {
231                         char buf[] = "This is some content";
232                         memset(buf, '\0', sizeof(buf)); __asm__ volatile("" : : "g"(&buf) : "memory");
233                         return 0;
234                     }
235                     ''',
236                     define='HAVE_GCC_VOLATILE_MEMORY_PROTECTION',
237                     addmain=False,
238                     msg='Checking for volatile memory protection',
239                     local_include=False)
240
241     # Some old Linux systems have broken header files and
242     # miss the IPV6_V6ONLY define in netinet/in.h,
243     # but have it in linux/in6.h.
244     # We can't include both files so we just check if the value
245     # if defined and do the replacement in system/network.h
246     if not conf.CHECK_VARIABLE('IPV6_V6ONLY',
247                                headers='sys/socket.h netdb.h netinet/in.h'):
248         conf.CHECK_CODE('''
249                         #include <linux/in6.h>
250                         #if (IPV6_V6ONLY != 26)
251                         #error no IPV6_V6ONLY support on linux
252                         #endif
253                         int main(void) { return IPV6_V6ONLY; }
254                         ''',
255                         define='HAVE_LINUX_IPV6_V6ONLY_26',
256                         addmain=False,
257                         msg='Checking for IPV6_V6ONLY in linux/in6.h',
258                         local_include=False)
259
260     conf.CHECK_CODE('''
261                        struct sockaddr_storage sa_store;
262                        struct addrinfo *ai = NULL;
263                        struct in6_addr in6addr;
264                        int idx = if_nametoindex("iface1");
265                        int s = socket(AF_INET6, SOCK_STREAM, 0);
266                        int ret = getaddrinfo(NULL, NULL, NULL, &ai);
267                        if (ret != 0) {
268                            const char *es = gai_strerror(ret);
269                        }
270                        freeaddrinfo(ai);
271                        {
272                           int val = 1;
273                           #ifdef HAVE_LINUX_IPV6_V6ONLY_26
274                           #define IPV6_V6ONLY 26
275                           #endif
276                           ret = setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY,
277                                            (const void *)&val, sizeof(val));
278                        }
279                        ''',
280                     define='HAVE_IPV6',
281                     lib='nsl socket',
282                     headers='sys/socket.h netdb.h netinet/in.h net/if.h')
283
284     if conf.CONFIG_SET('HAVE_SYS_UCONTEXT_H') and conf.CONFIG_SET('HAVE_SIGNAL_H'):
285         conf.CHECK_CODE('''
286                        ucontext_t uc;
287                        sigaddset(&uc.uc_sigmask, SIGUSR1);
288                        ''',
289                        'HAVE_UCONTEXT_T',
290                        msg="Checking whether we have ucontext_t",
291                        headers='signal.h sys/ucontext.h')
292
293     # Check for atomic builtins. */
294     conf.CHECK_CODE('''
295                     int i;
296                     (void)__sync_fetch_and_add(&i, 1);
297                     ''',
298                     'HAVE___SYNC_FETCH_AND_ADD',
299                     msg='Checking for __sync_fetch_and_add compiler builtin')
300
301     conf.CHECK_CODE('''
302                     int i;
303                     (void)__sync_add_and_fetch(&i, 1);
304                     ''',
305                     'HAVE___SYNC_ADD_AND_FETCH',
306                     msg='Checking for __sync_add_and_fetch compiler builtin')
307
308     conf.CHECK_CODE('''
309                     int32_t i;
310                     atomic_add_32(&i, 1);
311                     ''',
312                     'HAVE_ATOMIC_ADD_32',
313                     headers='stdint.h sys/atomic.h',
314                     msg='Checking for atomic_add_32 compiler builtin')
315
316     # Check for thread fence. */
317     tf = conf.CHECK_CODE('atomic_thread_fence(memory_order_seq_cst);',
318                          'HAVE_ATOMIC_THREAD_FENCE',
319                          headers='stdatomic.h',
320                          msg='Checking for atomic_thread_fence(memory_order_seq_cst) in stdatomic.h')
321     if not tf:
322         tf = conf.CHECK_CODE('__atomic_thread_fence(__ATOMIC_SEQ_CST);',
323                              'HAVE___ATOMIC_THREAD_FENCE',
324                              msg='Checking for __atomic_thread_fence(__ATOMIC_SEQ_CST)')
325     if not tf:
326         # __sync_synchronize() is available since 2005 in gcc.
327         tf = conf.CHECK_CODE('__sync_synchronize();',
328                              'HAVE___SYNC_SYNCHRONIZE',
329                              msg='Checking for __sync_synchronize')
330     if tf:
331         conf.DEFINE('HAVE_ATOMIC_THREAD_FENCE_SUPPORT', 1)
332
333     conf.CHECK_CODE('''
334                     #define FALL_THROUGH __attribute__((fallthrough))
335
336                     enum direction_e {
337                         UP = 0,
338                         DOWN,
339                     };
340
341                     int main(void) {
342                         enum direction_e key = UP;
343                         int i = 10;
344                         int j = 0;
345
346                         switch (key) {
347                         case UP:
348                             i = 5;
349                             FALL_THROUGH;
350                         case DOWN:
351                             j = i * 2;
352                             break;
353                         default:
354                             break;
355                         }
356
357                         if (j < i) {
358                             return 1;
359                         }
360
361                         return 0;
362                     }
363                     ''',
364                     'HAVE_FALLTHROUGH_ATTRIBUTE',
365                     addmain=False,
366                     strict=True,
367                     cflags=['-Werror=missing-declarations'],
368                     msg='Checking for fallthrough attribute')
369
370     # these may be builtins, so we need the link=False strategy
371     conf.CHECK_FUNCS('strdup memmem printf memset memcpy memmove strcpy strncpy bzero', link=False)
372
373     # See https://bugzilla.samba.org/show_bug.cgi?id=1097
374     #
375     # Ported in from autoconf where it was added with this commit:
376     # commit 804cfb20a067b4b687089dc72a8271b3abf20f31
377     # Author: Simo Sorce <idra@samba.org>
378     # Date:   Wed Aug 25 14:24:16 2004 +0000
379     #     r2070: Let's try to overload srnlen and strndup for AIX where they are natly broken.
380
381     host_os = sys.platform
382     if host_os.rfind('aix') > -1:
383         conf.DEFINE('BROKEN_STRNLEN', 1)
384         conf.DEFINE('BROKEN_STRNDUP', 1)
385
386     conf.CHECK_FUNCS('shl_load shl_unload shl_findsym')
387     conf.CHECK_FUNCS('pipe strftime srandom random srand rand usleep setbuffer')
388     conf.CHECK_FUNCS('lstat getpgrp utime utimes setuid seteuid setreuid setresuid setgid setegid')
389     conf.CHECK_FUNCS('setregid setresgid chroot strerror vsyslog setlinebuf mktime')
390     conf.CHECK_FUNCS('ftruncate chsize rename waitpid wait4')
391     conf.CHECK_FUNCS('initgroups pread pwrite strndup strcasestr strsep')
392     conf.CHECK_FUNCS('strtok_r mkdtemp dup2 dprintf vdprintf isatty chown lchown')
393     conf.CHECK_FUNCS('link readlink symlink realpath snprintf vsnprintf')
394     conf.CHECK_FUNCS('asprintf vasprintf setenv unsetenv strnlen strtoull __strtoull')
395     conf.CHECK_FUNCS('strtouq strtoll __strtoll strtoq memalign posix_memalign')
396     conf.CHECK_FUNCS('fmemopen')
397
398     if conf.CONFIG_SET('HAVE_MEMALIGN'):
399         conf.CHECK_DECLS('memalign', headers='malloc.h')
400
401     # glibc up to 2.3.6 had dangerously broken posix_fallocate(). DON'T USE IT.
402     if conf.CHECK_CODE('''
403 #define _XOPEN_SOURCE 600
404 #include <stdlib.h>
405 #if defined(__GLIBC__) && ((__GLIBC__ < 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 4))
406 #error probably broken posix_fallocate
407 #endif
408 ''',
409                        '_POSIX_FALLOCATE_CAPABLE_LIBC',
410                        msg='Checking for posix_fallocate-capable libc'):
411         conf.CHECK_FUNCS('posix_fallocate')
412
413     conf.CHECK_FUNCS('prctl dirname basename')
414
415     strlcpy_in_bsd = False
416
417     # libbsd on some platforms provides strlcpy and strlcat
418     if not conf.CHECK_FUNCS('strlcpy strlcat'):
419         if conf.CHECK_FUNCS_IN('strlcpy strlcat', 'bsd', headers='bsd/string.h',
420                                checklibc=True):
421             strlcpy_in_bsd = True
422     if not conf.CHECK_FUNCS('getpeereid'):
423         conf.CHECK_FUNCS_IN('getpeereid', 'bsd', headers='sys/types.h bsd/unistd.h')
424     if not conf.CHECK_FUNCS_IN('setproctitle', 'setproctitle', headers='setproctitle.h'):
425         conf.CHECK_FUNCS_IN('setproctitle', 'bsd', headers='sys/types.h bsd/unistd.h')
426     if not conf.CHECK_FUNCS('setproctitle_init'):
427         conf.CHECK_FUNCS_IN('setproctitle_init', 'bsd', headers='sys/types.h bsd/unistd.h')
428
429     if not conf.CHECK_FUNCS('closefrom'):
430         conf.CHECK_FUNCS_IN('closefrom', 'bsd', headers='bsd/unistd.h')
431
432     conf.CHECK_CODE('''
433                 struct ucred cred;
434                 socklen_t cred_len;
435                 int ret = getsockopt(0, SOL_SOCKET, SO_PEERCRED, &cred, &cred_len);''',
436                 'HAVE_PEERCRED',
437                 msg="Checking whether we can use SO_PEERCRED to get socket credentials",
438                 headers='sys/types.h sys/socket.h')
439
440     #Some OS (ie. freebsd) return EINVAL if the conversion could not be done, it's not what we expect
441     #Let's detect those cases
442     if conf.CONFIG_SET('HAVE_STRTOLL'):
443         conf.CHECK_CODE('''
444                         long long nb = strtoll("Text", NULL, 0);
445                         if (errno == EINVAL) {
446                             return 0;
447                         } else {
448                             return 1;
449                         }
450                         ''',
451                         msg="Checking correct behavior of strtoll",
452                         headers = 'errno.h',
453                         execute = True,
454                         define = 'HAVE_BSD_STRTOLL',
455                         )
456     conf.CHECK_FUNCS('if_nametoindex strerror_r')
457     conf.CHECK_FUNCS('syslog')
458     conf.CHECK_FUNCS('gai_strerror get_current_dir_name')
459     conf.CHECK_FUNCS('timegm getifaddrs freeifaddrs mmap setgroups syscall setsid')
460     conf.CHECK_FUNCS('getgrent_r getgrgid_r getgrnam_r getgrouplist getpagesize')
461     conf.CHECK_FUNCS('getpwent_r getpwnam_r getpwuid_r epoll_create')
462     conf.CHECK_FUNCS('port_create')
463     conf.CHECK_FUNCS('getprogname')
464     if not conf.CHECK_FUNCS('copy_file_range'):
465         conf.CHECK_CODE('''
466 syscall(SYS_copy_file_range,0,NULL,0,NULL,0,0);
467                         ''',
468                         'HAVE_SYSCALL_COPY_FILE_RANGE',
469                         headers='sys/syscall.h unistd.h',
470                         msg='Checking whether we have copy_file_range system call')
471
472     conf.SET_TARGET_TYPE('attr', 'EMPTY')
473
474     xattr_headers='sys/attributes.h attr/xattr.h sys/xattr.h'
475
476     # default to 1, we set it to 0 if we don't find any EA implementation below:
477     conf.DEFINE('HAVE_XATTR_SUPPORT', 1)
478     if conf.CHECK_FUNCS_IN('getxattr', 'attr', checklibc=True, headers=xattr_headers):
479         conf.DEFINE('HAVE_XATTR_XATTR', 1)
480         # Darwin has extra options to xattr-family functions
481         conf.CHECK_CODE('getxattr(NULL, NULL, NULL, 0, 0, 0)',
482                         headers=xattr_headers, local_include=False,
483                         define='XATTR_ADDITIONAL_OPTIONS',
484                         msg="Checking whether xattr interface takes additional options")
485     elif conf.CHECK_FUNCS_IN('attr_listf', 'attr', checklibc=True, headers=xattr_headers):
486         conf.DEFINE('HAVE_XATTR_ATTR', 1)
487     elif conf.CHECK_FUNCS('extattr_list_fd'):
488         conf.DEFINE('HAVE_XATTR_EXTATTR', 1)
489     elif conf.CHECK_FUNCS('flistea'):
490         conf.DEFINE('HAVE_XATTR_EA', 1)
491     elif not conf.CHECK_FUNCS('attropen'):
492             conf.DEFINE('HAVE_XATTR_SUPPORT', 0)
493
494
495     conf.CHECK_FUNCS_IN('dlopen dlsym dlerror dlclose', 'dl',
496                         checklibc=True, headers='dlfcn.h dl.h')
497
498     conf.CHECK_C_PROTOTYPE('dlopen', 'void *dlopen(const char* filename, unsigned int flags)',
499                            define='DLOPEN_TAKES_UNSIGNED_FLAGS', headers='dlfcn.h dl.h')
500
501     #
502     # Check for clock_gettime and fdatasync
503     #
504     # First check libc to avoid linking libreplace against librt.
505     #
506     if conf.CHECK_FUNCS('fdatasync'):
507         # some systems are missing the declaration
508         conf.CHECK_DECLS('fdatasync')
509     else:
510         if conf.CHECK_FUNCS_IN('fdatasync', 'rt'):
511             # some systems are missing the declaration
512             conf.CHECK_DECLS('fdatasync')
513
514     has_clock_gettime = False
515     if conf.CHECK_FUNCS('clock_gettime'):
516         has_clock_gettime = True
517
518     if not has_clock_gettime:
519         if conf.CHECK_FUNCS_IN('clock_gettime', 'rt', checklibc=True):
520             has_clock_gettime = True
521
522     if has_clock_gettime:
523         for c in ['CLOCK_MONOTONIC', 'CLOCK_PROCESS_CPUTIME_ID', 'CLOCK_REALTIME']:
524             conf.CHECK_CODE('''
525                 #if TIME_WITH_SYS_TIME
526                 # include <sys/time.h>
527                 # include <time.h>
528                 #else
529                 # if HAVE_SYS_TIME_H
530                 #  include <sys/time.h>
531                 # else
532                 #  include <time.h>
533                 # endif
534                 #endif
535                 clockid_t clk = %s''' % c,
536                 'HAVE_%s' % c,
537                 msg='Checking whether the clock_gettime clock ID %s is available' % c)
538
539     conf.CHECK_TYPE('struct timespec', headers='sys/time.h time.h')
540
541     # these headers need to be tested as a group on freebsd
542     conf.CHECK_HEADERS(headers='sys/socket.h net/if.h', together=True)
543     conf.CHECK_HEADERS(headers='netinet/in.h arpa/nameser.h resolv.h', together=True)
544     conf.CHECK_FUNCS_IN('res_search', 'resolv', checklibc=True,
545                         headers='netinet/in.h arpa/nameser.h resolv.h')
546
547
548     # try to find libintl (if --without-gettext is not given)
549     conf.env.intl_libs=''
550     if not Options.options.disable_gettext:
551         conf.CHECK_HEADERS('libintl.h')
552         conf.CHECK_LIB('intl')
553         conf.CHECK_DECLS('dgettext gettext bindtextdomain textdomain bind_textdomain_codeset', headers="libintl.h")
554         # *textdomain functions are not strictly necessary
555         conf.CHECK_FUNCS_IN('bindtextdomain textdomain bind_textdomain_codeset',
556                             '', checklibc=True, headers='libintl.h')
557         # gettext and dgettext must exist
558         # on some systems (the ones with glibc, those are in libc)
559         if conf.CHECK_FUNCS_IN('dgettext gettext', '', checklibc=True, headers='libintl.h'):
560             # save for dependency definitions
561             conf.env.intl_libs=''
562         # others (e.g. FreeBSD) have separate libintl
563         elif conf.CHECK_FUNCS_IN('dgettext gettext', 'intl', checklibc=False, headers='libintl.h'):
564             # save for dependency definitions
565             conf.env.intl_libs='intl'
566             # recheck with libintl
567             conf.CHECK_FUNCS_IN('bindtextdomain textdomain bind_textdomain_codeset',
568                             'intl', checklibc=False, headers='libintl.h')
569         else:
570             # Some hosts need lib iconv for linking with lib intl
571             # So we try with flags just in case it helps.
572             oldflags = list(conf.env['EXTRA_LDFLAGS']);
573             conf.env['EXTRA_LDFLAGS'].extend(["-liconv"])
574             conf.CHECK_FUNCS_IN('dgettext gettext bindtextdomain textdomain bind_textdomain_codeset',
575                                 'intl', checklibc=False, headers='libintl.h')
576             conf.env['EXTRA_LDFLAGS'] = oldflags
577             if conf.env['HAVE_GETTEXT'] and conf.env['HAVE_DGETTEXT']:
578                 # save for dependency definitions
579                 conf.env.intl_libs='iconv intl'
580
581     # did we find both prototypes and a library to link against?
582     # if not, unset the detected values (see Bug #9911)
583     if not (conf.env['HAVE_GETTEXT'] and conf.env['HAVE_DECL_GETTEXT']):
584        conf.undefine('HAVE_GETTEXT')
585        conf.undefine('HAVE_DECL_GETTEXT')
586     if not (conf.env['HAVE_DGETTEXT'] and conf.env['HAVE_DECL_DGETTEXT']):
587        conf.undefine('HAVE_DGETTEXT')
588        conf.undefine('HAVE_DECL_DGETTEXT')
589
590     conf.CHECK_FUNCS_IN('pthread_create', 'pthread', checklibc=True, headers='pthread.h')
591
592     PTHREAD_CFLAGS='error'
593     PTHREAD_LDFLAGS='error'
594
595     if PTHREAD_LDFLAGS == 'error':
596         # Check if pthread_attr_init() is provided by libc first!
597         if conf.CHECK_FUNCS('pthread_attr_init'):
598             PTHREAD_CFLAGS='-D_REENTRANT'
599             PTHREAD_LDFLAGS=''
600     if PTHREAD_LDFLAGS == 'error':
601         if conf.CHECK_FUNCS_IN('pthread_attr_init', 'pthread'):
602             PTHREAD_CFLAGS='-D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS'
603             PTHREAD_LDFLAGS='-lpthread'
604     if PTHREAD_LDFLAGS == 'error':
605         if conf.CHECK_FUNCS_IN('pthread_attr_init', 'pthreads'):
606             PTHREAD_CFLAGS='-D_THREAD_SAFE'
607             PTHREAD_LDFLAGS='-lpthreads'
608     if PTHREAD_LDFLAGS == 'error':
609         if conf.CHECK_FUNCS_IN('pthread_attr_init', 'c_r'):
610             PTHREAD_CFLAGS='-D_THREAD_SAFE -pthread'
611             PTHREAD_LDFLAGS='-pthread'
612
613     # especially for HP-UX, where the CHECK_FUNC macro fails to test for
614     # pthread_attr_init. On pthread_mutex_lock it works there...
615     if PTHREAD_LDFLAGS == 'error':
616         if conf.CHECK_FUNCS_IN('pthread_mutex_lock', 'pthread'):
617             PTHREAD_CFLAGS='-D_REENTRANT'
618             PTHREAD_LDFLAGS='-lpthread'
619
620     if PTHREAD_CFLAGS != 'error' and PTHREAD_LDFLAGS != 'error':
621         if conf.CONFIG_SET('replace_add_global_pthread'):
622             conf.ADD_CFLAGS(PTHREAD_CFLAGS)
623             conf.ADD_LDFLAGS(PTHREAD_LDFLAGS)
624         conf.CHECK_HEADERS('pthread.h')
625         conf.DEFINE('HAVE_PTHREAD', '1')
626
627     if conf.CONFIG_SET('HAVE_PTHREAD'):
628
629         conf.CHECK_FUNCS_IN('pthread_mutexattr_setrobust', 'pthread',
630                             checklibc=True, headers='pthread.h')
631         if not conf.CONFIG_SET('HAVE_PTHREAD_MUTEXATTR_SETROBUST'):
632             conf.CHECK_FUNCS_IN('pthread_mutexattr_setrobust_np', 'pthread',
633                                 checklibc=True, headers='pthread.h')
634
635         conf.CHECK_DECLS('PTHREAD_MUTEX_ROBUST', headers='pthread.h')
636         if not conf.CONFIG_SET('HAVE_DECL_PTHREAD_MUTEX_ROBUST'):
637             conf.CHECK_DECLS('PTHREAD_MUTEX_ROBUST_NP', headers='pthread.h')
638
639         conf.CHECK_FUNCS_IN('pthread_mutex_consistent', 'pthread',
640                             checklibc=True, headers='pthread.h')
641         if not conf.CONFIG_SET('HAVE_PTHREAD_MUTEX_CONSISTENT'):
642             conf.CHECK_FUNCS_IN('pthread_mutex_consistent_np', 'pthread',
643                                 checklibc=True, headers='pthread.h')
644
645         if ((conf.CONFIG_SET('HAVE_PTHREAD_MUTEXATTR_SETROBUST') or
646              conf.CONFIG_SET('HAVE_PTHREAD_MUTEXATTR_SETROBUST_NP')) and
647             (conf.CONFIG_SET('HAVE_DECL_PTHREAD_MUTEX_ROBUST') or
648              conf.CONFIG_SET('HAVE_DECL_PTHREAD_MUTEX_ROBUST_NP')) and
649             (conf.CONFIG_SET('HAVE_PTHREAD_MUTEX_CONSISTENT') or
650              conf.CONFIG_SET('HAVE_PTHREAD_MUTEX_CONSISTENT_NP'))):
651             conf.DEFINE('HAVE_ROBUST_MUTEXES', 1)
652
653     # __thread is available since 2002 in gcc.
654     conf.CHECK_CODE('''
655         __thread int tls;
656
657         int main(void) {
658             return 0;
659         }
660         ''',
661         'HAVE___THREAD',
662         addmain=False,
663         msg='Checking for __thread local storage')
664
665     conf.CHECK_FUNCS_IN('crypt', 'crypt', checklibc=True)
666     conf.CHECK_FUNCS_IN('crypt_r', 'crypt', checklibc=True)
667     conf.CHECK_FUNCS_IN('crypt_rn', 'crypt', checklibc=True)
668
669     conf.CHECK_VARIABLE('rl_event_hook', define='HAVE_DECL_RL_EVENT_HOOK', always=True,
670                         headers='readline.h readline/readline.h readline/history.h')
671     conf.CHECK_VARIABLE('program_invocation_short_name', headers='errno.h')
672
673     conf.CHECK_DECLS('snprintf vsnprintf asprintf vasprintf')
674
675     conf.CHECK_DECLS('errno', headers='errno.h', reverse=True)
676     conf.CHECK_DECLS('EWOULDBLOCK', headers='errno.h')
677     conf.CHECK_DECLS('environ', reverse=True, headers='unistd.h')
678     conf.CHECK_DECLS('getgrent_r getpwent_r', reverse=True, headers='pwd.h grp.h')
679     conf.CHECK_DECLS('pread pwrite setenv setresgid setresuid', reverse=True)
680
681     if conf.CONFIG_SET('HAVE_EPOLL_CREATE') and conf.CONFIG_SET('HAVE_SYS_EPOLL_H'):
682         conf.DEFINE('HAVE_EPOLL', 1)
683
684     if conf.CONFIG_SET('HAVE_PORT_CREATE') and conf.CONFIG_SET('HAVE_PORT_H'):
685         conf.DEFINE('HAVE_SOLARIS_PORTS', 1)
686
687     if conf.CHECK_FUNCS('eventfd', headers='sys/eventfd.h'):
688         conf.DEFINE('HAVE_EVENTFD', 1)
689
690     conf.CHECK_HEADERS('poll.h')
691     conf.CHECK_FUNCS('poll')
692
693     conf.CHECK_FUNCS('strptime')
694     conf.CHECK_DECLS('strptime', headers='time.h')
695     conf.CHECK_CODE('''#define LIBREPLACE_CONFIGURE_TEST_STRPTIME
696                        #include "tests/strptime.c"''',
697                        define='HAVE_WORKING_STRPTIME',
698                        execute=True,
699                        addmain=False,
700                        msg='Checking for working strptime')
701
702     conf.CHECK_C_PROTOTYPE('gettimeofday',
703                            'int gettimeofday(struct timeval *tv, struct timezone *tz)',
704                            define='HAVE_GETTIMEOFDAY_TZ', headers='sys/time.h')
705
706     conf.CHECK_C_PROTOTYPE('gettimeofday',
707                            'int gettimeofday(struct timeval *tv, void *tz)',
708                            define='HAVE_GETTIMEOFDAY_TZ_VOID',
709                            headers='sys/time.h')
710
711     conf.CHECK_CODE('#include "tests/snprintf.c"',
712                     define="HAVE_C99_VSNPRINTF",
713                     execute=True,
714                     addmain=False,
715                     msg="Checking for C99 vsnprintf")
716
717     conf.CHECK_CODE('#include "tests/shared_mmap.c"',
718                     addmain=False, add_headers=False, execute=True,
719                     define='HAVE_SHARED_MMAP',
720                     msg="Checking for HAVE_SHARED_MMAP")
721
722     conf.CHECK_CODE('#include "tests/shared_mremap.c"',
723                     addmain=False, add_headers=False, execute=True,
724                     define='HAVE_MREMAP',
725                     msg="Checking for HAVE_MREMAP")
726
727     # OpenBSD (and I've heard HPUX) doesn't sync between mmap and write.
728     # FIXME: Anything other than a 0 or 1 exit code should abort configure!
729     conf.CHECK_CODE('#include "tests/incoherent_mmap.c"',
730                     addmain=False, add_headers=False, execute=True,
731                     define='HAVE_INCOHERENT_MMAP',
732                     msg="Checking for HAVE_INCOHERENT_MMAP")
733
734     conf.SAMBA_BUILD_ENV()
735
736     conf.CHECK_CODE('''
737                     typedef struct {unsigned x;} FOOBAR;
738                     #define X_FOOBAR(x) ((FOOBAR) { x })
739                     #define FOO_ONE X_FOOBAR(1)
740                     FOOBAR f = FOO_ONE;
741                     static const struct {
742                         FOOBAR y;
743                     } f2[] = {
744                         {FOO_ONE}
745                     };
746                     static const FOOBAR f3[] = {FOO_ONE};
747                     ''',
748                     define='HAVE_IMMEDIATE_STRUCTURES')
749
750     conf.CHECK_CODE('mkdir("foo",0777)', define='HAVE_MKDIR_MODE', headers='sys/stat.h')
751
752     # we need the st_rdev test under two names
753     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_rdev',
754                                 define='HAVE_STRUCT_STAT_ST_RDEV',
755                                 headers='sys/stat.h')
756     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_rdev', define='HAVE_ST_RDEV',
757                                 headers='sys/stat.h')
758     conf.CHECK_STRUCTURE_MEMBER('struct sockaddr_storage', 'ss_family',
759                                 headers='sys/socket.h netinet/in.h')
760     conf.CHECK_STRUCTURE_MEMBER('struct sockaddr_storage', '__ss_family',
761                                 headers='sys/socket.h netinet/in.h')
762
763
764     if conf.CHECK_STRUCTURE_MEMBER('struct sockaddr', 'sa_len',
765                                    headers='sys/socket.h netinet/in.h',
766                                    define='HAVE_SOCKADDR_SA_LEN'):
767         # the old build system produced both defines
768         conf.DEFINE('HAVE_STRUCT_SOCKADDR_SA_LEN', 1)
769
770     conf.CHECK_STRUCTURE_MEMBER('struct sockaddr_in', 'sin_len',
771                                 headers='sys/socket.h netinet/in.h',
772                                 define='HAVE_SOCK_SIN_LEN')
773
774     conf.CHECK_STRUCTURE_MEMBER('struct sockaddr_in6', 'sin6_len',
775                                 headers='sys/socket.h netinet/in.h',
776                                 define='HAVE_SOCK_SIN6_LEN')
777
778     conf.CHECK_CODE('struct sockaddr_un sunaddr; sunaddr.sun_family = AF_UNIX;',
779                     define='HAVE_UNIXSOCKET', headers='sys/socket.h sys/un.h')
780
781
782     conf.CHECK_CODE('''
783                     struct stat st;
784                     char tpl[20]="/tmp/test.XXXXXX";
785                     char tpl2[20]="/tmp/test.XXXXXX";
786                     int fd = mkstemp(tpl);
787                     int fd2 = mkstemp(tpl2);
788                     if (fd == -1) {
789                           if (fd2 != -1) {
790                                   unlink(tpl2);
791                           }
792                           exit(1);
793                     }
794                     if (fd2 == -1) exit(1);
795                     unlink(tpl);
796                     unlink(tpl2);
797                     if (fstat(fd, &st) != 0) exit(1);
798                     if ((st.st_mode & 0777) != 0600) exit(1);
799                     if (strcmp(tpl, "/tmp/test.XXXXXX") == 0) {
800                           exit(1);
801                     }
802                     if (strcmp(tpl, tpl2) == 0) {
803                           exit(1);
804                     }
805                     exit(0);
806                     ''',
807                     define='HAVE_SECURE_MKSTEMP',
808                     execute=True,
809                     mandatory=True) # lets see if we get a mandatory failure for this one
810
811     # look for a method of finding the list of network interfaces
812     for method in ['HAVE_IFACE_GETIFADDRS', 'HAVE_IFACE_AIX', 'HAVE_IFACE_IFCONF', 'HAVE_IFACE_IFREQ']:
813         bsd_for_strlcpy = ''
814         if strlcpy_in_bsd:
815             bsd_for_strlcpy = ' bsd'
816         if conf.CHECK_CODE('''
817                            #define %s 1
818                            #define NO_CONFIG_H 1
819                            #define AUTOCONF_TEST 1
820                            #include "replace.c"
821                            #include "inet_ntop.c"
822                            #include "snprintf.c"
823                            #include "getifaddrs.c"
824                            #define getifaddrs_test main
825                            #include "tests/getifaddrs.c"
826                            ''' % method,
827                            method,
828                            lib='nsl socket' + bsd_for_strlcpy,
829                            addmain=False,
830                            execute=True):
831             break
832
833     conf.RECURSE('system')
834     conf.SAMBA_CONFIG_H()
835     if conf.CHECK_FUNCS('strerror_r'):
836         # Check if strerror_r is XSI-Compatable, the default GNU implementation
837         # is not
838         conf.CHECK_CODE('int strerror_r(int errnum, char *buf, size_t buflen);',
839                         'STRERROR_R_XSI_NOT_GNU',
840                         headers='string.h', addmain=False, link=False,
841                         msg="Checking for XSI (rather than GNU) prototype for strerror_r")
842
843
844 REPLACEMENT_FUNCTIONS = {
845     'replace.c': ['ftruncate', 'strlcpy', 'strlcat', 'mktime', 'initgroups',
846                   'memmove', 'strdup', 'setlinebuf', 'vsyslog', 'strnlen',
847                   'strndup', 'waitpid', 'seteuid', 'setegid', 'chroot',
848                   'mkstemp', 'mkdtemp', 'pread', 'pwrite', 'strcasestr',
849                   'strsep', 'strtok_r', 'strtoll', 'strtoull', 'setenv', 'unsetenv',
850                   'utime', 'utimes', 'dup2', 'chown', 'link', 'readlink',
851                   'symlink', 'lchown', 'realpath', 'memmem', 'vdprintf',
852                   'dprintf', 'get_current_dir_name', 'copy_file_range',
853                   'strerror_r', 'clock_gettime', 'memset_s'],
854     'timegm.c': ['timegm'],
855     # Note: C99_VSNPRINTF is not a function, but a special condition
856     # for replacement
857     'snprintf.c': ['C99_VSNPRINTF', 'snprintf', 'vsnprintf', 'asprintf', 'vasprintf'],
858     # Note: WORKING_STRPTIME is not a function, but a special condition
859     # for replacement
860     'strptime.c': ['WORKING_STRPTIME', 'strptime'],
861     }
862
863
864 def build(bld):
865     bld.RECURSE('buildtools/wafsamba')
866
867     REPLACE_HOSTCC_SOURCE = ''
868
869     for filename in REPLACEMENT_FUNCTIONS.keys():
870         for function in REPLACEMENT_FUNCTIONS[filename]:
871             if not bld.CONFIG_SET('HAVE_%s' % function.upper()):
872                 REPLACE_HOSTCC_SOURCE += ' %s' % filename
873                 break
874
875     extra_libs = ''
876     if bld.CONFIG_SET('HAVE_LIBBSD'): extra_libs += ' bsd'
877     if bld.CONFIG_SET('HAVE_LIBRT'): extra_libs += ' rt'
878     if bld.CONFIG_SET('REPLACE_REQUIRES_LIBSOCKET_LIBNSL'): extra_libs += ' socket nsl'
879
880     if not bld.CONFIG_SET('HAVE_CLOSEFROM'):
881         REPLACE_HOSTCC_SOURCE += ' closefrom.c'
882
883     bld.SAMBA_SUBSYSTEM('LIBREPLACE_HOSTCC',
884         REPLACE_HOSTCC_SOURCE,
885         use_hostcc=True,
886         use_global_deps=False,
887         group='hostcc_base_build_main',
888         deps = extra_libs
889     )
890
891     REPLACE_SOURCE = REPLACE_HOSTCC_SOURCE
892
893     if not bld.CONFIG_SET('HAVE_DLOPEN'):        REPLACE_SOURCE += ' dlfcn.c'
894     if not bld.CONFIG_SET('HAVE_POLL'):          REPLACE_SOURCE += ' poll.c'
895
896     if not bld.CONFIG_SET('HAVE_SOCKETPAIR'):    REPLACE_SOURCE += ' socketpair.c'
897     if not bld.CONFIG_SET('HAVE_CONNECT'):       REPLACE_SOURCE += ' socket.c'
898     if not bld.CONFIG_SET('HAVE_GETIFADDRS'):    REPLACE_SOURCE += ' getifaddrs.c'
899     if not bld.CONFIG_SET('HAVE_GETADDRINFO'):   REPLACE_SOURCE += ' getaddrinfo.c'
900     if not bld.CONFIG_SET('HAVE_INET_NTOA'):     REPLACE_SOURCE += ' inet_ntoa.c'
901     if not bld.CONFIG_SET('HAVE_INET_ATON'):     REPLACE_SOURCE += ' inet_aton.c'
902     if not bld.CONFIG_SET('HAVE_INET_NTOP'):     REPLACE_SOURCE += ' inet_ntop.c'
903     if not bld.CONFIG_SET('HAVE_INET_PTON'):     REPLACE_SOURCE += ' inet_pton.c'
904     if not bld.CONFIG_SET('HAVE_GETXATTR') or bld.CONFIG_SET('XATTR_ADDITIONAL_OPTIONS'):
905                                                  REPLACE_SOURCE += ' xattr.c'
906
907     if not bld.CONFIG_SET('HAVE_CLOSEFROM'):
908         REPLACE_SOURCE += ' closefrom.c'
909
910     bld.SAMBA_LIBRARY('replace',
911                       source=REPLACE_SOURCE,
912                       group='base_libraries',
913                       # FIXME: Ideally symbols should be hidden here so they 
914                       # don't appear in the global namespace when Samba 
915                       # libraries are loaded, but this doesn't appear to work 
916                       # at the moment:
917                       # hide_symbols=bld.BUILTIN_LIBRARY('replace'),
918                       private_library=True,
919                       provide_builtin_linking=True,
920                       deps='dl attr' + extra_libs)
921
922     replace_test_cflags = ''
923     if bld.CONFIG_SET('HAVE_WNO_FORMAT_TRUNCATION'):
924         replace_test_cflags += " -Wno-format-truncation"
925     bld.SAMBA_SUBSYSTEM('replace-test',
926                         source='''tests/testsuite.c tests/strptime.c
927                         tests/os2_delete.c tests/getifaddrs.c''',
928                         deps='replace',
929                         cflags=replace_test_cflags)
930
931     bld.SAMBA_BINARY('replace_testsuite',
932                      source='tests/main.c',
933                      deps='replace replace-test',
934                      install=False)
935
936     # build replacements for stdint.h and stdbool.h if needed
937     bld.SAMBA_GENERATOR('replace_stdint_h',
938                         rule='cp ${SRC} ${TGT}',
939                         source='hdr_replace.h',
940                         target='stdint.h',
941                         enabled = not bld.CONFIG_SET('HAVE_STDINT_H'))
942     bld.SAMBA_GENERATOR('replace_stdbool_h',
943                         rule='cp ${SRC} ${TGT}',
944                         source='hdr_replace.h',
945                         target='stdbool.h',
946                         enabled = not bld.CONFIG_SET('HAVE_STDBOOL_H'))
947
948     bld.SAMBA_SUBSYSTEM('samba_intl', source='', use_global_deps=False,deps=bld.env.intl_libs)
949
950 def testonly(ctx):
951     '''run talloc testsuite'''
952     import samba_utils
953
954     samba_utils.ADD_LD_LIBRARY_PATH('bin/shared')
955     samba_utils.ADD_LD_LIBRARY_PATH('bin/shared/private')
956
957     cmd = os.path.join(Context.g_module.out, 'replace_testsuite')
958     ret = samba_utils.RUN_COMMAND(cmd)
959     print("testsuite returned %d" % ret)
960     sys.exit(ret)
961
962 # WAF doesn't build the unit tests for this, maybe because they don't link with talloc?
963 # This forces it
964 def test(ctx):
965     Options.commands.append('build')
966     Options.commands.append('testonly')
967
968 def dist():
969     '''makes a tarball for distribution'''
970     samba_dist.dist()