7 sys
.path
.insert(0, srcdir
+"/buildtools/wafsamba")
9 import Options
, os
, preproc
12 opt
.BUILTIN_DEFAULT('NONE')
13 opt
.BUNDLED_EXTENSION_DEFAULT('')
14 opt
.recurse('../../buildtools/wafsamba')
18 conf
.sub_config('../../buildtools/wafsamba')
20 conf
.DEFINE('LIBREPLACE_NETWORK_CHECKS', 1)
22 conf
.CHECK_HEADERS('crypt.h locale.h acl/libacl.h compat.h')
23 conf
.CHECK_HEADERS('acl/libacl.h attr/xattr.h compat.h ctype.h dustat.h')
24 conf
.CHECK_HEADERS('fcntl.h fnmatch.h glob.h history.h krb5.h langinfo.h')
25 conf
.CHECK_HEADERS('libaio.h locale.h ndir.h pwd.h')
26 conf
.CHECK_HEADERS('shadow.h sys/acl.h')
27 conf
.CHECK_HEADERS('sys/attributes.h sys/capability.h sys/dir.h sys/epoll.h')
28 conf
.CHECK_HEADERS('sys/fcntl.h sys/filio.h sys/filsys.h sys/fs/s5param.h sys/fs/vx/quota.h')
29 conf
.CHECK_HEADERS('sys/id.h sys/ioctl.h sys/ipc.h sys/mman.h sys/mode.h sys/ndir.h sys/priv.h')
30 conf
.CHECK_HEADERS('sys/resource.h sys/security.h sys/shm.h sys/statfs.h sys/statvfs.h sys/termio.h')
31 conf
.CHECK_HEADERS('sys/vfs.h sys/xattr.h termio.h termios.h')
32 conf
.CHECK_HEADERS('sys/wait.h sys/stat.h malloc.h grp.h')
33 conf
.CHECK_HEADERS('sys/select.h setjmp.h utime.h sys/syslog.h syslog.h')
34 conf
.CHECK_HEADERS('stdarg.h vararg.h sys/mount.h mntent.h')
35 conf
.CHECK_HEADERS('stropts.h unix.h string.h strings.h sys/param.h limits.h')
36 conf
.CHECK_HEADERS('''sys/socket.h netinet/in.h netdb.h arpa/inet.h netinet/in_systm.h
37 netinet/ip.h netinet/tcp.h netinet/in_ip.h
38 sys/sockio.h sys/un.h''', together
=True)
39 conf
.CHECK_HEADERS('sys/uio.h ifaddrs.h direct.h dirent.h')
40 conf
.CHECK_HEADERS('windows.h winsock2.h ws2tcpip.h')
41 conf
.CHECK_HEADERS('libintl.h errno.h')
42 conf
.CHECK_HEADERS('gcrypt.h getopt.h iconv.h')
43 conf
.CHECK_HEADERS('sys/inotify.h memory.h nss.h sasl/sasl.h')
44 conf
.CHECK_HEADERS('security/pam_appl.h sys/inotify.h zlib.h asm/unistd.h')
45 conf
.CHECK_HEADERS('aio.h sys/unistd.h rpc/rpc.h rpc/nettype.h alloca.h float.h')
47 conf
.CHECK_HEADERS('rpcsvc/nis.h rpcsvc/ypclnt.h sys/prctl.h sys/sysctl.h')
48 conf
.CHECK_HEADERS('sys/fileio.h sys/filesys.h sys/dustat.h sys/sysmacros.h')
49 conf
.CHECK_HEADERS('xfs/libxfs.h netgroup.h rpcsvc/yp_prot.h')
50 conf
.CHECK_HEADERS('valgrind.h valgrind/valgrind.h valgrind/memcheck.h')
51 conf
.CHECK_HEADERS('nss_common.h nsswitch.h ns_api.h')
52 conf
.CHECK_HEADERS('sys/extattr.h sys/ea.h sys/proplist.h sys/cdefs.h')
53 conf
.CHECK_HEADERS('utmp.h utmpx.h lastlog.h')
54 conf
.CHECK_HEADERS('syscall.h sys/syscall.h inttypes.h')
56 conf
.CHECK_TYPES('"long long" intptr_t uintptr_t ptrdiff_t')
57 conf
.CHECK_TYPES('comparison_fn_t bool')
58 conf
.CHECK_TYPE('_Bool', define
='HAVE__Bool')
60 conf
.CHECK_TYPE('int8_t', 'char')
61 conf
.CHECK_TYPE('int16_t', 'short')
62 conf
.CHECK_TYPE('uint16_t', 'unsigned short')
63 conf
.CHECK_TYPE('int32_t', 'int')
64 conf
.CHECK_TYPE('uint32_t', 'unsigned')
65 conf
.CHECK_TYPE('int64_t', 'long long')
66 conf
.CHECK_TYPE('uint64_t', 'unsigned long long')
67 conf
.CHECK_TYPE('size_t', 'unsigned int')
68 conf
.CHECK_TYPE('ssize_t', 'int')
69 conf
.CHECK_TYPE('ino_t', 'unsigned')
70 conf
.CHECK_TYPE('loff_t', 'off_t')
71 conf
.CHECK_TYPE('bool', 'off_t')
72 conf
.CHECK_TYPE('offset_t', 'loff_t')
73 conf
.CHECK_TYPE('volatile int', define
='HAVE_VOLATILE')
74 conf
.CHECK_TYPE('uint_t', 'unsigned int')
76 conf
.CHECK_TYPES('socklen_t', headers
='sys/socket.h')
77 conf
.CHECK_TYPE_IN('struct ifaddrs', 'ifaddrs.h')
78 conf
.CHECK_TYPE_IN('struct addrinfo', 'netdb.h')
79 conf
.CHECK_TYPE_IN('struct sockaddr', 'sys/socket.h')
80 conf
.CHECK_CODE('struct sockaddr_in6 x', define
='HAVE_STRUCT_SOCKADDR_IN6',
81 headers
='sys/socket.h netdb.h netinet/in.h')
82 conf
.CHECK_TYPE_IN('struct sockaddr_storage', 'sys/socket.h')
83 conf
.CHECK_TYPE_IN('sa_family_t', 'sys/socket.h')
85 conf
.CHECK_TYPE_IN('sig_atomic_t', 'signal.h', define
='HAVE_SIG_ATOMIC_T_TYPE')
87 conf
.CHECK_FUNCS_IN('''inet_ntoa inet_aton inet_ntop inet_pton connect gethostbyname
88 getaddrinfo getnameinfo freeaddrinfo gai_strerror socketpair''',
89 'socket nsl', checklibc
=True,
90 headers
='sys/socket.h netinet/in.h arpa/inet.h netdb.h')
93 struct sockaddr_storage sa_store;
94 struct addrinfo *ai = NULL;
95 struct in6_addr in6addr;
96 int idx = if_nametoindex("iface1");
97 int s = socket(AF_INET6, SOCK_STREAM, 0);
98 int ret = getaddrinfo(NULL, NULL, NULL, &ai);
100 const char *es = gai_strerror(ret);
106 headers
='sys/socket.h netdb.h netinet/in.h')
108 # these may be builtins, so we need the link=False strategy
109 conf
.CHECK_FUNCS('strdup memmem printf memset memcpy memmove strcpy strncpy bzero', link
=False)
111 conf
.CHECK_FUNCS('shl_load shl_unload shl_findsym')
112 conf
.CHECK_FUNCS('pipe strftime srandom random srand rand usleep setbuffer')
113 conf
.CHECK_FUNCS('lstat getpgrp utime utimes seteuid setresuid setegid')
114 conf
.CHECK_FUNCS('setresgid chroot strerror vsyslog setlinebuf mktime')
115 conf
.CHECK_FUNCS('ftruncate chsize rename waitpid wait4 strlcpy strlcat')
116 conf
.CHECK_FUNCS('initgroups pread pwrite strndup strcasestr')
117 conf
.CHECK_FUNCS('strtok_r mkdtemp dup2 dprintf vdprintf isatty chown lchown')
118 conf
.CHECK_FUNCS('link readlink symlink realpath snprintf vsnprintf')
119 conf
.CHECK_FUNCS('asprintf vasprintf setenv unsetenv strnlen strtoull __strtoull')
120 conf
.CHECK_FUNCS('strtouq strtoll __strtoll strtoq')
121 conf
.CHECK_FUNCS('if_nametoindex strerror_r')
122 conf
.CHECK_FUNCS('getdirentries getdents syslog')
123 conf
.CHECK_FUNCS('gai_strerror get_current_dir_name')
124 conf
.CHECK_FUNCS('timegm getifaddrs freeifaddrs mmap setgroups setsid')
125 conf
.CHECK_FUNCS('getgrent_r getgrgid_r getgrnam_r getgrouplist getpagesize')
126 conf
.CHECK_FUNCS('getpwent_r getpwnam_r getpwuid_r epoll_create')
128 conf
.CHECK_FUNCS_IN('dlopen dlsym dlerror dlclose', 'dl',
129 checklibc
=True, headers
='dlfcn.h dl.h')
131 conf
.CHECK_FUNCS_IN('fdatasync', 'rt', checklibc
=True)
133 # these headers need to be tested as a group on freebsd
134 conf
.CHECK_HEADERS(headers
='sys/socket.h net/if.h', together
=True)
135 conf
.CHECK_HEADERS(headers
='netinet/in.h arpa/nameser.h resolv.h', together
=True)
136 conf
.CHECK_FUNCS_IN('res_search', 'resolv', checklibc
=True,
137 headers
='netinet/in.h arpa/nameser.h resolv.h')
139 conf
.CHECK_FUNCS_IN('gettext', 'intl', checklibc
=True, headers
='libintl.h')
140 conf
.CHECK_FUNCS_IN('pthread_create', 'pthread', checklibc
=True, headers
='pthread.h')
142 conf
.CHECK_FUNCS_IN('crypt', 'crypt', checklibc
=True)
144 conf
.CHECK_VARIABLE('rl_event_hook', define
='HAVE_DECL_RL_EVENT_HOOK', always
=True,
145 headers
='readline.h readline/readline.h readline/history.h')
147 conf
.CHECK_DECLS('snprintf vsnprintf asprintf vasprintf')
149 conf
.CHECK_DECLS('errno', headers
='errno.h', reverse
=True)
150 conf
.CHECK_DECLS('environ getgrent_r getpwent_r', reverse
=True, headers
='pwd.h grp.h')
151 conf
.CHECK_DECLS('pread pwrite setenv setresgid setresuid', reverse
=True)
153 conf
.CHECK_SIZEOF('char int "long long" long off_t short size_t ssize_t')
154 conf
.CHECK_SIZEOF('dev_t ino_t time_t')
155 conf
.CHECK_SIZEOF('void*', define
='SIZEOF_VOID_P')
157 if conf
.CONFIG_SET('HAVE_EPOLL_CREATE') and conf
.CONFIG_SET('HAVE_SYS_EPOLL_H'):
158 conf
.DEFINE('HAVE_EPOLL', 1)
160 if not conf
.CHECK_CODE('''#define LIBREPLACE_CONFIGURE_TEST_STRPTIME
161 #include "$libreplacedir/test/strptime.c"''',
162 define
='HAVE_STRPTIME',
163 msg
='Checking for working strptime'):
164 conf
.DEFINE('REPLACE_STRPTIME', 1)
167 conf
.CHECK_CODE('gettimeofday(NULL, NULL)', 'HAVE_GETTIMEOFDAY_TZ', execute
=False)
169 conf
.CHECK_CODE('#include "test/snprintf.c"',
170 define
="HAVE_C99_VSNPRINTF",
173 msg
="Checking for C99 vsnprintf")
175 conf
.SAMBA_BUILD_ENV()
178 typedef struct {unsigned x;} FOOBAR;
179 #define X_FOOBAR(x) ((FOOBAR) { x })
180 #define FOO_ONE X_FOOBAR(1)
182 static const struct {
187 static const FOOBAR f3[] = {FOO_ONE};
189 define
='HAVE_IMMEDIATE_STRUCTURES')
191 conf
.CHECK_CODE('mkdir("foo",0777)', define
='HAVE_MKDIR_MODE', headers
='sys/stat.h')
193 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtim.tv_nsec', define
='HAVE_STAT_TV_NSEC',
194 headers
='sys/stat.h')
195 # we need the st_rdev test under two names
196 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_rdev',
197 define
='HAVE_STRUCT_STAT_ST_RDEV',
198 headers
='sys/stat.h')
199 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_rdev', define
='HAVE_ST_RDEV',
200 headers
='sys/stat.h')
201 conf
.CHECK_STRUCTURE_MEMBER('struct sockaddr_storage', 'ss_family',
202 headers
='sys/socket.h netinet/in.h')
205 if conf
.CHECK_STRUCTURE_MEMBER('struct sockaddr', 'sa_len',
206 headers
='sys/socket.h netinet/in.h',
207 define
='HAVE_SOCKADDR_SA_LEN'):
208 # the old build system produced both defines
209 conf
.DEFINE('HAVE_STRUCT_SOCKADDR_SA_LEN', 1)
211 conf
.CHECK_STRUCTURE_MEMBER('struct sockaddr_in', 'sin_len',
212 headers
='sys/socket.h netinet/in.h',
213 define
='HAVE_SOCK_SIN_LEN')
215 conf
.CHECK_CODE('struct sockaddr_un sunaddr; sunaddr.sun_family = AF_UNIX;',
216 define
='HAVE_UNIXSOCKET', headers
='sys/socket.h sys/un.h')
221 char tpl[20]="/tmp/test.XXXXXX";
222 int fd = mkstemp(tpl);
223 if (fd == -1) exit(1);
225 if (fstat(fd, &st) != 0) exit(1);
226 if ((st.st_mode & 0777) != 0600) exit(1);
229 define
='HAVE_SECURE_MKSTEMP',
231 mandatory
=True) # lets see if we get a mandatory failure for this one
233 if conf
.CHECK_CFLAGS('-fvisibility=hidden'):
234 conf
.env
.VISIBILITY_CFLAGS
= '-fvisibility=hidden'
235 conf
.CHECK_CODE('''void vis_foo1(void) {}
236 __attribute__((visibility("default"))) void vis_foo2(void) {}''',
237 cflags
=conf
.env
.VISIBILITY_CFLAGS
,
238 define
='HAVE_VISIBILITY_ATTR')
240 if not conf
.CHECK_CODE('''#define LIBREPLACE_CONFIGURE_TEST_STRPTIME
241 #include "$libreplacedir/test/strptime.c"''',
242 define
='HAVE_STRPTIME',
243 msg
='Checking for working strptime'):
244 conf
.DEFINE('REPLACE_STRPTIME', 1)
247 # look for a method of finding the list of network interfaces
248 for method
in ['HAVE_IFACE_GETIFADDRS', 'HAVE_IFACE_AIX', 'HAVE_IFACE_IFCONF', 'HAVE_IFACE_IFREQ']:
249 if conf
.CHECK_CODE('''
251 #define NO_CONFIG_H 1
252 #define AUTOCONF_TEST 1
253 #define SOCKET_WRAPPER_NOT_REPLACE
255 #include "inet_ntop.c"
256 #include "snprintf.c"
257 #include "getifaddrs.c"
258 #define getifaddrs_test main
259 #include "test/getifaddrs.c"
267 if conf
.CHECK_FUNCS('getpass getpassphrase'):
268 # if we have both, then we prefer getpassphrase
269 conf
.DEFINE('REPLACE_GETPASS_BY_GETPASSPHRASE', 1)
270 conf
.DEFINE('REPLACE_GETPASS', 1)
272 conf
.CHECK_CODE('''#include "getpass.c"
273 int main(void) { return 0; }''',
275 define
='REPLACE_GETPASS',
276 cflags
='-DNO_CONFIG_H')
278 conf
.sub_config('system')
279 conf
.SAMBA_CONFIG_H()
283 bld
.BUILD_SUBDIR('../../buildtools/wafsamba')
285 REPLACE_SOURCE
= 'replace.c snprintf.c'
287 if bld
.CONFIG_SET('REPLACE_STRPTIME'): REPLACE_SOURCE
+= ' strptime.c'
288 if not bld
.CONFIG_SET('HAVE_TIMEGM'): REPLACE_SOURCE
+= ' timegm.c'
289 if not bld
.CONFIG_SET('HAVE_GETIFADDRS'): REPLACE_SOURCE
+= ' getifaddrs.c'
290 if not bld
.CONFIG_SET('HAVE_DLOPEN'): REPLACE_SOURCE
+= ' dlfcn.c'
291 if not bld
.CONFIG_SET('HAVE_SOCKETPAIR'): REPLACE_SOURCE
+= ' socketpair.c'
292 if not bld
.CONFIG_SET('HAVE_CONNECT'): REPLACE_SOURCE
+= ' socket.c'
294 bld
.SAMBA_LIBRARY('replace',
295 source
=REPLACE_SOURCE
,
296 group
='base_libraries',
297 deps
='LIBREPLACE_GETPASS nsl socket')
299 TEST_SOURCES
= '''test/testsuite.c test/main.c test/strptime.c
300 test/os2_delete.c test/getifaddrs.c'''
303 bld
.SAMBA_BINARY('replace_testsuite',
309 if bld
.CONFIG_SET('HAVE_INET_NTOA'): NET_SOURCES
.append('inet_ntoa.c')
310 if bld
.CONFIG_SET('HAVE_INET_ATON'): NET_SOURCES
.append('inet_aton.c')
311 if bld
.CONFIG_SET('HAVE_INET_NTOP'): NET_SOURCES
.append('inet_ntop.c')
312 if bld
.CONFIG_SET('HAVE_INET_PTON'): NET_SOURCES
.append('inet_pton.c')
313 if bld
.CONFIG_SET('HAVE_SOCKETPAIR'): NET_SOURCES
.append('socketpair.c')
315 bld
.SAMBA_SUBSYSTEM('LIBREPLACE_NETWORK', NET_SOURCES
, deps
='replace')
319 if not 'HAVE_CRYPT' in bld
.env
: CRYPT_SOURCES
.append('crypt.c')
321 bld
.SAMBA_SUBSYSTEM('LIBREPLACE_EXT', CRYPT_SOURCES
)
323 bld
.SAMBA_SUBSYSTEM('LIBREPLACE_GETPASS', 'getpass.c',
324 enabled
=bld
.CONFIG_SET('REPLACE_GETPASS'))
326 # build replacements for stdint.h and stdbool.h if needed
327 bld
.SAMBA_GENERATOR('replace_stdint_h',
328 rule
='cp ${SRC} ${TGT}',
329 source
='hdr_replace.h',
331 enabled
= not bld
.CONFIG_SET('HAVE_STDINT_H'))
332 bld
.SAMBA_GENERATOR('replace_stdbool_h',
333 rule
='cp ${SRC} ${TGT}',
334 source
='hdr_replace.h',
336 enabled
= not bld
.CONFIG_SET('HAVE_STDBOOL_H'))