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