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 | conf.CHECK_TYPE('struct timespec', headers='sys/time.h time.h')
|
---|
223 |
|
---|
224 | # these headers need to be tested as a group on freebsd
|
---|
225 | conf.CHECK_HEADERS(headers='sys/socket.h net/if.h', together=True)
|
---|
226 | conf.CHECK_HEADERS(headers='netinet/in.h arpa/nameser.h resolv.h', together=True)
|
---|
227 | conf.CHECK_FUNCS_IN('res_search', 'resolv', checklibc=True,
|
---|
228 | headers='netinet/in.h arpa/nameser.h resolv.h')
|
---|
229 |
|
---|
230 |
|
---|
231 | if not conf.CHECK_FUNCS_IN('gettext', 'intl', checklibc=True, headers='libintl.h'):
|
---|
232 | # Some hosts need lib iconv for linking with lib intl
|
---|
233 | # So we try with flags just in case it helps.
|
---|
234 | oldflags = conf.env['LDFLAGS_INTL']
|
---|
235 | conf.env['LDFLAGS_INTL'] = "-liconv"
|
---|
236 | if not conf.CHECK_LIB('intl'):
|
---|
237 | conf.env['LDFLAGS_INTL'] = oldflags
|
---|
238 | else:
|
---|
239 | conf.CHECK_FUNCS_IN('gettext', 'intl', checklibc=True, headers='libintl.h')
|
---|
240 |
|
---|
241 | conf.CHECK_FUNCS_IN('dgettext gettext', 'intl', headers='libintl.h')
|
---|
242 | conf.CHECK_FUNCS_IN('pthread_create', 'pthread', checklibc=True, headers='pthread.h')
|
---|
243 |
|
---|
244 | conf.CHECK_FUNCS_IN('crypt', 'crypt', checklibc=True)
|
---|
245 |
|
---|
246 | conf.CHECK_VARIABLE('rl_event_hook', define='HAVE_DECL_RL_EVENT_HOOK', always=True,
|
---|
247 | headers='readline.h readline/readline.h readline/history.h')
|
---|
248 |
|
---|
249 | conf.CHECK_DECLS('snprintf vsnprintf asprintf vasprintf')
|
---|
250 |
|
---|
251 | conf.CHECK_DECLS('errno', headers='errno.h', reverse=True)
|
---|
252 | conf.CHECK_DECLS('environ getgrent_r getpwent_r', reverse=True, headers='pwd.h grp.h')
|
---|
253 | conf.CHECK_DECLS('pread pwrite setenv setresgid setresuid', reverse=True)
|
---|
254 |
|
---|
255 | if conf.CONFIG_SET('HAVE_EPOLL_CREATE') and conf.CONFIG_SET('HAVE_SYS_EPOLL_H'):
|
---|
256 | conf.DEFINE('HAVE_EPOLL', 1)
|
---|
257 |
|
---|
258 | conf.CHECK_HEADERS('poll.h')
|
---|
259 | conf.CHECK_FUNCS('poll')
|
---|
260 |
|
---|
261 | if not conf.CHECK_CODE('''#define LIBREPLACE_CONFIGURE_TEST_STRPTIME
|
---|
262 | #include "test/strptime.c"''',
|
---|
263 | define='HAVE_STRPTIME',
|
---|
264 | addmain=False,
|
---|
265 | msg='Checking for working strptime'):
|
---|
266 | conf.DEFINE('REPLACE_STRPTIME', 1)
|
---|
267 | else:
|
---|
268 | conf.CHECK_CODE('''
|
---|
269 | const char *s = "20070414101546Z";
|
---|
270 | char *ret;
|
---|
271 | struct tm t;
|
---|
272 | memset(&t, 0, sizeof(t));
|
---|
273 | ret = strptime(s, "%Y%m%d%H%M%S", &t);
|
---|
274 | if (ret == NULL || t.tm_wday != 6) {
|
---|
275 | return 0;
|
---|
276 | } else {
|
---|
277 | return 1;
|
---|
278 | }
|
---|
279 | ''',
|
---|
280 | msg="Checking correct behavior of strptime",
|
---|
281 | headers = 'time.h',
|
---|
282 | execute = True,
|
---|
283 | define_ret = True,
|
---|
284 | define = 'REPLACE_STRPTIME',
|
---|
285 | )
|
---|
286 |
|
---|
287 | conf.CHECK_CODE('gettimeofday(NULL, NULL)', 'HAVE_GETTIMEOFDAY_TZ', execute=False)
|
---|
288 |
|
---|
289 | conf.CHECK_CODE('#include "test/snprintf.c"',
|
---|
290 | define="HAVE_C99_VSNPRINTF",
|
---|
291 | execute=1,
|
---|
292 | addmain=False,
|
---|
293 | msg="Checking for C99 vsnprintf")
|
---|
294 |
|
---|
295 | conf.SAMBA_BUILD_ENV()
|
---|
296 |
|
---|
297 | conf.CHECK_CODE('''
|
---|
298 | typedef struct {unsigned x;} FOOBAR;
|
---|
299 | #define X_FOOBAR(x) ((FOOBAR) { x })
|
---|
300 | #define FOO_ONE X_FOOBAR(1)
|
---|
301 | FOOBAR f = FOO_ONE;
|
---|
302 | static const struct {
|
---|
303 | FOOBAR y;
|
---|
304 | } f2[] = {
|
---|
305 | {FOO_ONE}
|
---|
306 | };
|
---|
307 | static const FOOBAR f3[] = {FOO_ONE};
|
---|
308 | ''',
|
---|
309 | define='HAVE_IMMEDIATE_STRUCTURES')
|
---|
310 |
|
---|
311 | conf.CHECK_CODE('mkdir("foo",0777)', define='HAVE_MKDIR_MODE', headers='sys/stat.h')
|
---|
312 |
|
---|
313 | conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtim.tv_nsec', define='HAVE_STAT_TV_NSEC',
|
---|
314 | headers='sys/stat.h')
|
---|
315 | # we need the st_rdev test under two names
|
---|
316 | conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_rdev',
|
---|
317 | define='HAVE_STRUCT_STAT_ST_RDEV',
|
---|
318 | headers='sys/stat.h')
|
---|
319 | conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_rdev', define='HAVE_ST_RDEV',
|
---|
320 | headers='sys/stat.h')
|
---|
321 | conf.CHECK_STRUCTURE_MEMBER('struct sockaddr_storage', 'ss_family',
|
---|
322 | headers='sys/socket.h netinet/in.h')
|
---|
323 | conf.CHECK_STRUCTURE_MEMBER('struct sockaddr_storage', '__ss_family',
|
---|
324 | headers='sys/socket.h netinet/in.h')
|
---|
325 |
|
---|
326 |
|
---|
327 | if conf.CHECK_STRUCTURE_MEMBER('struct sockaddr', 'sa_len',
|
---|
328 | headers='sys/socket.h netinet/in.h',
|
---|
329 | define='HAVE_SOCKADDR_SA_LEN'):
|
---|
330 | # the old build system produced both defines
|
---|
331 | conf.DEFINE('HAVE_STRUCT_SOCKADDR_SA_LEN', 1)
|
---|
332 |
|
---|
333 | conf.CHECK_STRUCTURE_MEMBER('struct sockaddr_in', 'sin_len',
|
---|
334 | headers='sys/socket.h netinet/in.h',
|
---|
335 | define='HAVE_SOCK_SIN_LEN')
|
---|
336 |
|
---|
337 | conf.CHECK_CODE('struct sockaddr_un sunaddr; sunaddr.sun_family = AF_UNIX;',
|
---|
338 | define='HAVE_UNIXSOCKET', headers='sys/socket.h sys/un.h')
|
---|
339 |
|
---|
340 |
|
---|
341 | conf.CHECK_CODE('''
|
---|
342 | struct stat st;
|
---|
343 | char tpl[20]="/tmp/test.XXXXXX";
|
---|
344 | int fd = mkstemp(tpl);
|
---|
345 | if (fd == -1) exit(1);
|
---|
346 | unlink(tpl);
|
---|
347 | if (fstat(fd, &st) != 0) exit(1);
|
---|
348 | if ((st.st_mode & 0777) != 0600) exit(1);
|
---|
349 | exit(0);
|
---|
350 | ''',
|
---|
351 | define='HAVE_SECURE_MKSTEMP',
|
---|
352 | execute=True,
|
---|
353 | mandatory=True) # lets see if we get a mandatory failure for this one
|
---|
354 |
|
---|
355 | if conf.CHECK_CFLAGS('-fvisibility=hidden'):
|
---|
356 | conf.env.VISIBILITY_CFLAGS = '-fvisibility=hidden'
|
---|
357 | conf.CHECK_CODE('''void vis_foo1(void) {}
|
---|
358 | __attribute__((visibility("default"))) void vis_foo2(void) {}''',
|
---|
359 | cflags=conf.env.VISIBILITY_CFLAGS,
|
---|
360 | define='HAVE_VISIBILITY_ATTR')
|
---|
361 |
|
---|
362 | # look for a method of finding the list of network interfaces
|
---|
363 | for method in ['HAVE_IFACE_GETIFADDRS', 'HAVE_IFACE_AIX', 'HAVE_IFACE_IFCONF', 'HAVE_IFACE_IFREQ']:
|
---|
364 | if conf.CHECK_CODE('''
|
---|
365 | #define %s 1
|
---|
366 | #define NO_CONFIG_H 1
|
---|
367 | #define AUTOCONF_TEST 1
|
---|
368 | #define SOCKET_WRAPPER_NOT_REPLACE
|
---|
369 | #include "replace.c"
|
---|
370 | #include "inet_ntop.c"
|
---|
371 | #include "snprintf.c"
|
---|
372 | #include "getifaddrs.c"
|
---|
373 | #define getifaddrs_test main
|
---|
374 | #include "test/getifaddrs.c"
|
---|
375 | ''' % method,
|
---|
376 | method,
|
---|
377 | lib='nsl socket',
|
---|
378 | addmain=False,
|
---|
379 | execute=True):
|
---|
380 | break
|
---|
381 |
|
---|
382 | if conf.CHECK_FUNCS('getpass getpassphrase'):
|
---|
383 | # if we have both, then we prefer getpassphrase
|
---|
384 | conf.DEFINE('REPLACE_GETPASS_BY_GETPASSPHRASE', 1)
|
---|
385 | conf.DEFINE('REPLACE_GETPASS', 1)
|
---|
386 | else:
|
---|
387 | conf.CHECK_CODE('''#include "getpass.c"
|
---|
388 | int main(void) { return 0; }''',
|
---|
389 | addmain=False,
|
---|
390 | define='REPLACE_GETPASS',
|
---|
391 | cflags='-DNO_CONFIG_H')
|
---|
392 |
|
---|
393 | conf.RECURSE('system')
|
---|
394 | conf.SAMBA_CONFIG_H()
|
---|
395 |
|
---|
396 |
|
---|
397 | def build(bld):
|
---|
398 | bld.RECURSE('buildtools/wafsamba')
|
---|
399 |
|
---|
400 | REPLACE_HOSTCC_SOURCE = 'replace.c snprintf.c'
|
---|
401 |
|
---|
402 | if bld.CONFIG_SET('REPLACE_STRPTIME'): REPLACE_HOSTCC_SOURCE += ' strptime.c'
|
---|
403 | if not bld.CONFIG_SET('HAVE_TIMEGM'): REPLACE_HOSTCC_SOURCE += ' timegm.c'
|
---|
404 |
|
---|
405 | bld.SAMBA_SUBSYSTEM('LIBREPLACE_HOSTCC',
|
---|
406 | REPLACE_HOSTCC_SOURCE,
|
---|
407 | use_hostcc=True,
|
---|
408 | use_global_deps=False,
|
---|
409 | cflags='-DSOCKET_WRAPPER_DISABLE=1 -DNSS_WRAPPER_DISABLE=1 -D_SAMBA_HOSTCC_',
|
---|
410 | group='compiler_libraries'
|
---|
411 | )
|
---|
412 |
|
---|
413 | REPLACE_SOURCE = REPLACE_HOSTCC_SOURCE
|
---|
414 |
|
---|
415 | if bld.CONFIG_SET('REPLACE_GETPASS'): REPLACE_SOURCE += ' getpass.c'
|
---|
416 | if not bld.CONFIG_SET('HAVE_CRYPT'): REPLACE_SOURCE += ' crypt.c'
|
---|
417 | if not bld.CONFIG_SET('HAVE_DLOPEN'): REPLACE_SOURCE += ' dlfcn.c'
|
---|
418 | if not bld.CONFIG_SET('HAVE_POLL'): REPLACE_SOURCE += ' poll.c'
|
---|
419 |
|
---|
420 | if not bld.CONFIG_SET('HAVE_SOCKETPAIR'): REPLACE_SOURCE += ' socketpair.c'
|
---|
421 | if not bld.CONFIG_SET('HAVE_CONNECT'): REPLACE_SOURCE += ' socket.c'
|
---|
422 | if not bld.CONFIG_SET('HAVE_GETIFADDRS'): REPLACE_SOURCE += ' getifaddrs.c'
|
---|
423 | if not bld.CONFIG_SET('HAVE_GETADDRINFO'): REPLACE_SOURCE += ' getaddrinfo.c'
|
---|
424 | if not bld.CONFIG_SET('HAVE_INET_NTOA'): REPLACE_SOURCE += ' inet_ntoa.c'
|
---|
425 | if not bld.CONFIG_SET('HAVE_INET_ATON'): REPLACE_SOURCE += ' inet_aton.c'
|
---|
426 | if not bld.CONFIG_SET('HAVE_INET_NTOP'): REPLACE_SOURCE += ' inet_ntop.c'
|
---|
427 | if not bld.CONFIG_SET('HAVE_INET_PTON'): REPLACE_SOURCE += ' inet_pton.c'
|
---|
428 |
|
---|
429 | bld.SAMBA_LIBRARY('replace',
|
---|
430 | source=REPLACE_SOURCE,
|
---|
431 | group='base_libraries',
|
---|
432 | # FIXME: Ideally symbols should be hidden here so they
|
---|
433 | # don't appear in the global namespace when Samba
|
---|
434 | # libraries are loaded, but this doesn't appear to work
|
---|
435 | # at the moment:
|
---|
436 | # hide_symbols=bld.BUILTIN_LIBRARY('replace'),
|
---|
437 | private_library=True,
|
---|
438 | deps='crypt dl nsl socket rt')
|
---|
439 |
|
---|
440 | bld.SAMBA_SUBSYSTEM('replace-test',
|
---|
441 | source='''test/testsuite.c test/strptime.c
|
---|
442 | test/os2_delete.c test/getifaddrs.c''',
|
---|
443 | deps='replace')
|
---|
444 |
|
---|
445 | if bld.env.standalone_replace:
|
---|
446 | bld.SAMBA_BINARY('replace_testsuite',
|
---|
447 | source='test/main.c',
|
---|
448 | deps='replace replace-test',
|
---|
449 | install=False)
|
---|
450 |
|
---|
451 | # build replacements for stdint.h and stdbool.h if needed
|
---|
452 | bld.SAMBA_GENERATOR('replace_stdint_h',
|
---|
453 | rule='cp ${SRC} ${TGT}',
|
---|
454 | source='hdr_replace.h',
|
---|
455 | target='stdint.h',
|
---|
456 | enabled = not bld.CONFIG_SET('HAVE_STDINT_H'))
|
---|
457 | bld.SAMBA_GENERATOR('replace_stdbool_h',
|
---|
458 | rule='cp ${SRC} ${TGT}',
|
---|
459 | source='hdr_replace.h',
|
---|
460 | target='stdbool.h',
|
---|
461 | enabled = not bld.CONFIG_SET('HAVE_STDBOOL_H'))
|
---|
462 |
|
---|
463 | def dist():
|
---|
464 | '''makes a tarball for distribution'''
|
---|
465 | samba_dist.dist()
|
---|