build: added WORDS_BIGENDIAN test
[nivanova/samba-autobuild/.git] / lib / replace / wscript
1 #! /usr/bin/env python
2
3 srcdir = '../..'
4 blddir = 'bin'
5
6 import sys
7 sys.path.insert(0, srcdir+"/buildtools/wafsamba")
8 import wafsamba
9 import Options, os, preproc
10
11 def set_options(opt):
12     opt.tool_options('compiler_cc')
13     # TODO: we are not yet obeying these default paths at install time
14     opt.add_option('--libdir',
15                    help=("object code libraries [PREFIX/lib"),
16                    action="store", dest='LIBDIR', default='${PREFIX}/lib')
17     opt.add_option('--bindir',
18                    help=("user executables [PREFIX/bin]"),
19                    action="store", dest='BINDIR', default='${PREFIX}/bin')
20     opt.add_option('--sbindir',
21                    help=("system admin executables [PREFIX/sbin]"),
22                    action="store", dest='SBINDIR', default='${PREFIX}/sbin')
23     opt.add_option('--enable-rpath',
24                    help=("Enable use of rpath for installed binaries"),
25                    action="store_true", dest='enable_rpath', default=False)
26     opt.add_option('--enable-developer',
27                    help=("Turn on developer warnings and debugging"),
28                    action="store_true", dest='developer', default=False)
29     opt.add_option('--enable-gccdeps',
30                    help=("Enable use gcc -MD dependency module"),
31                    action="store_true", dest='enable_gccdeps', default=False)
32     opt.add_option('--timestamp-dependencies',
33                    help=("use file timestamps instead of content for build dependencies (BROKEN)"),
34                    action="store_true", dest='timestamp_dependencies', default=False)
35     opt.add_option('-C', action='store_true', help='dummy option for autoconf compatibility')
36     opt.add_option('--pedantic',
37                    help=("Enable even more compiler warnings"),
38                    action='store_true', dest='pedantic', default=False)
39
40 @wafsamba.runonce
41 def configure(conf):
42     conf.env.hlist = []
43     conf.env.srcdir = conf.srcdir
44
45     # during the configure checks we want the waf dependency checker
46     # to go into system includes. This ensures that if you add/remove
47     # a system library, that 'waf configure' will detect that, and
48     # it won't be fooled by the waf cache
49     preproc.go_absolute = True
50
51     if Options.options.timestamp_dependencies:
52         conf.ENABLE_TIMESTAMP_DEPENDENCIES()
53
54     # load our local waf extensions
55     conf.check_tool('wafsamba', tooldir=conf.srcdir + "/buildtools/wafsamba")
56
57     # trim whitespaces from 'CC'.
58     # The build farm sometimes puts a space at the start
59     if os.environ.get('CC'):
60         os.environ['CC'] = os.environ.get('CC').strip()
61
62     conf.check_tool('compiler_cc')
63
64     if Options.options.enable_gccdeps:
65         # don't enable gccdeps by default as it needs a very recent version gcc
66         conf.check_tool('gccdeps', tooldir=conf.srcdir + "/buildtools/wafsamba")
67
68     # make the install paths available in environment
69     conf.env.LIBDIR = Options.options.LIBDIR
70     conf.env.BINDIR = Options.options.BINDIR
71     conf.env.SBINDIR = Options.options.SBINDIR
72
73     conf.env.RPATH_ON_INSTALL = Options.options.enable_rpath
74
75     # we should use the PIC options in waf instead
76     conf.ADD_CFLAGS('-fPIC')
77
78     # check for pkgconfig
79     conf.check_cfg(atleast_pkgconfig_version='0.0.0')
80
81     conf.DEFINE('_GNU_SOURCE', 1, add_to_cflags=True)
82     conf.DEFINE('_XOPEN_SOURCE_EXTENDED', 1, add_to_cflags=True)
83     conf.DEFINE('LIBREPLACE_NETWORK_CHECKS', 1)
84
85     conf.CHECK_HEADERS('unistd.h sys/types.h stdlib.h stdio.h stddef.h')
86     conf.CHECK_HEADERS('ctype.h locale.h acl/libacl.h compat.h')
87     conf.CHECK_HEADERS('acl/libacl.h attr/xattr.h compat.h ctype.h dustat.h')
88     conf.CHECK_HEADERS('fcntl.h fnmatch.h glob.h history.h krb5.h langinfo.h')
89     conf.CHECK_HEADERS('libaio.h locale.h ndir.h net/if.h pwd.h readline.h')
90     conf.CHECK_HEADERS('readline/history.h readline/readline.h shadow.h sys/acl.h')
91     conf.CHECK_HEADERS('sys/attributes.h sys/capability.h sys/dir.h sys/epoll.h')
92     conf.CHECK_HEADERS('sys/fcntl.h sys/filio.h sys/filsys.h sys/fs/s5param.h sys/fs/vx/quota.h')
93     conf.CHECK_HEADERS('sys/id.h sys/ioctl.h sys/ipc.h sys/mman.h sys/mode.h sys/ndir.h sys/priv.h')
94     conf.CHECK_HEADERS('sys/resource.h sys/security.h sys/shm.h sys/statfs.h sys/statvfs.h sys/termio.h')
95     conf.CHECK_HEADERS('sys/vfs.h sys/xattr.h termio.h termios.h')
96     conf.CHECK_HEADERS('sys/wait.h sys/stat.h malloc.h grp.h')
97     conf.CHECK_HEADERS('crypt.h dlfcn.h dl.h standards.h stdbool.h stdint.h')
98     conf.CHECK_HEADERS('sys/select.h setjmp.h utime.h sys/syslog.h syslog.h')
99     conf.CHECK_HEADERS('sys/time.h time.h stdarg.h vararg.h sys/mount.h mntent.h')
100     conf.CHECK_HEADERS('stropts.h unix.h string.h strings.h sys/param.h limits.h')
101     conf.CHECK_HEADERS('sys/socket.h netinet/in.h netdb.h arpa/inet.h netinet/in_systm.h')
102     conf.CHECK_HEADERS('netinet/ip.h netinet/tcp.h netinet/in_ip.h sys/sockio.h sys/un.h')
103     conf.CHECK_HEADERS('sys/uio.h ifaddrs.h direct.h dirent.h')
104     conf.CHECK_HEADERS('windows.h winsock2.h ws2tcpip.h')
105     conf.CHECK_HEADERS('resolv.h libintl.h errno.h')
106     conf.CHECK_HEADERS('gcrypt.h getopt.h iconv.h')
107     conf.CHECK_HEADERS('sys/inotify.h memory.h nss.h popt.h sasl/sasl.h')
108     conf.CHECK_HEADERS('security/pam_appl.h sys/inotify.h zlib.h asm/unistd.h')
109
110     if 'HAVE_STDDEF_H' in conf.env and 'HAVE_STDLIB_H' in conf.env:
111         conf.DEFINE('STDC_HEADERS', 1)
112
113     if 'HAVE_SYS_TIME_H' in conf.env and 'HAVE_TIME_H' in conf.env:
114         conf.DEFINE('TIME_WITH_SYS_TIME', 1)
115
116     conf.define('SHLIBEXT', "so", quote=True)
117
118     conf.CHECK_TYPES('"long long" intptr_t uintptr_t ptrdiff_t')
119     conf.CHECK_TYPES('comparison_fn_t socklen_t bool')
120     conf.CHECK_TYPE('_Bool', define='HAVE__Bool')
121
122     conf.CHECK_TYPE('int8_t', 'char')
123     conf.CHECK_TYPE('int16_t', 'short')
124     conf.CHECK_TYPE('uint16_t', 'unsigned short')
125     conf.CHECK_TYPE('int32_t', 'int')
126     conf.CHECK_TYPE('uint32_t', 'unsigned')
127     conf.CHECK_TYPE('int64_t', 'long long')
128     conf.CHECK_TYPE('uint64_t', 'unsigned long long')
129     conf.CHECK_TYPE('size_t', 'unsigned int')
130     conf.CHECK_TYPE('ssize_t', 'int')
131     conf.CHECK_TYPE('ino_t', 'unsigned')
132     conf.CHECK_TYPE('loff_t', 'off_t')
133     conf.CHECK_TYPE('bool', 'off_t')
134     conf.CHECK_TYPE('offset_t', 'loff_t')
135     conf.CHECK_TYPE('volatile int', define='HAVE_VOLATILE')
136
137     conf.CHECK_CODE('long one = 1; return ((char *)(&one))[0]',
138                     execute=True,
139                     define='WORDS_BIGENDIAN')
140
141
142     conf.CHECK_TYPE_IN('struct ifaddrs', 'ifaddrs.h')
143     conf.CHECK_TYPE_IN('struct addrinfo', 'netdb.h')
144     conf.CHECK_TYPE_IN('struct sockaddr', 'sys/socket.h')
145     conf.CHECK_CODE('struct sockaddr_in6 x', define='HAVE_STRUCT_SOCKADDR_IN6')
146     conf.CHECK_TYPE_IN('struct sockaddr_storage', 'sys/socket.h')
147     conf.CHECK_TYPE_IN('sa_family_t', 'sys/socket.h')
148
149     conf.CHECK_TYPE_IN('sig_atomic_t', 'signal.h', define='HAVE_SIG_ATOMIC_T_TYPE')
150
151     conf.CHECK_CODE('''
152                        struct sockaddr_storage sa_store;
153                        struct addrinfo *ai = NULL;
154                        struct in6_addr in6addr;
155                        int idx = if_nametoindex("iface1");
156                        int s = socket(AF_INET6, SOCK_STREAM, 0);
157                        int ret = getaddrinfo(NULL, NULL, NULL, &ai);
158                        if (ret != 0) {
159                           const char *es = gai_strerror(ret);
160                        }
161                        freeaddrinfo(ai);
162                        ''',
163                     define='HAVE_IPV6')
164
165     # check if signal() takes a void function
166     if conf.CHECK_CODE('return *(signal (0, 0)) (0) == 1', define='RETSIGTYPE_INT', msg='Checking return type of signal handlers'):
167         conf.DEFINE('RETSIGTYPE', 'int')
168     else:
169         conf.DEFINE('RETSIGTYPE', 'void')
170
171     conf.CHECK_FUNCS('shl_load shl_unload shl_findsym')
172     conf.CHECK_FUNCS('pipe strftime srandom random srand rand usleep setbuffer')
173     conf.CHECK_FUNCS('lstat getpgrp utime utimes seteuid setresuid setegid')
174     conf.CHECK_FUNCS('setresgid chroot bzero strerror vsyslog setlinebuf mktime')
175     conf.CHECK_FUNCS('ftruncate chsize rename waitpid wait4 strlcpy strlcat')
176     conf.CHECK_FUNCS('initgroups memmove strdup pread pwrite strndup strcasestr')
177     conf.CHECK_FUNCS('strtok_r mkdtemp dup2 dprintf vdprintf isatty chown lchown')
178     conf.CHECK_FUNCS('link readlink symlink realpath fdatasync snprintf vsnprintf')
179     conf.CHECK_FUNCS('asprintf vasprintf setenv unsetenv strnlen strtoull __strtoull')
180     conf.CHECK_FUNCS('strtouq strtoll __strtoll strtoq memmem printf memset memcpy')
181     conf.CHECK_FUNCS('connect gethostbyname if_nametoindex socketpair')
182     conf.CHECK_FUNCS('inet_ntoa inet_aton inet_ntop inet_pton')
183     conf.CHECK_FUNCS('dirfd getdirentries getdents syslog getaddrinfo freeaddrinfo')
184     conf.CHECK_FUNCS('gai_strerror get_current_dir_name')
185     conf.CHECK_FUNCS('timegm getifaddrs freeifaddrs mmap setgroups setsid')
186     conf.CHECK_FUNCS('getgrent_r getgrgid_r getgrnam_r getgrouplist getpagesize')
187     conf.CHECK_FUNCS('getpwent_r getpwnam_r getpwuid_r epoll_create')
188
189
190     conf.CHECK_FUNCS_IN('dlopen dlsym dlerror dlclose', 'dl')
191     conf.CHECK_FUNCS_IN('poptGetContext', 'popt')
192     conf.CHECK_FUNCS_IN('res_search', 'resolv')
193     conf.CHECK_FUNCS_IN('gettext', 'intl')
194     conf.CHECK_FUNCS_IN('pthread_create', 'pthread')
195
196     conf.CHECK_FUNCS_IN('crypt', 'crypt', checklibc=True)
197
198     conf.CHECK_VARIABLE('rl_event_hook', define='HAVE_DECL_RL_EVENT_HOOK', always=True)
199
200     conf.CHECK_VARIABLE('__FUNCTION__', define='HAVE_FUNCTION_MACRO')
201
202     conf.CHECK_DECLS('snprintf vsnprintf asprintf vasprintf')
203
204     conf.CHECK_DECLS('dirfd environ errno getgrent_r getpwent_r', reverse=True)
205     conf.CHECK_DECLS('pread pwrite setenv setresgid setresuid', reverse=True)
206
207     conf.CHECK_SIZEOF('char int "long long" long off_t short size_t ssize_t')
208     conf.CHECK_SIZEOF('void*', define='SIZEOF_VOID_P')
209
210     if conf.CONFIG_SET('HAVE_EPOLL_CREATE') and conf.CONFIG_SET('HAVE_SYS_EPOLL_H'):
211         conf.DEFINE('HAVE_EPOLL', 1)
212
213     conf.CHECK_CODE('va_list ap1,ap2; va_copy(ap1,ap2)',
214                     define="HAVE_VA_COPY",
215                     msg="Checking for va_copy")
216
217     conf.CHECK_CODE('''
218                     #define eprintf(...) fprintf(stderr, __VA_ARGS__)
219                     eprintf("bla", "bar")
220                     ''', define='HAVE__VA_ARGS__MACRO')
221
222     conf.CHECK_CODE('gettimeofday(NULL, NULL)', 'HAVE_GETTIMEOFDAY_TZ', execute=False)
223
224     conf.CHECK_CODE('#include "test/snprintf.c"',
225                     define="HAVE_C99_VSNPRINTF",
226                     execute=1,
227                     addmain=False,
228                     msg="Checking for C99 vsnprintf")
229
230     if Options.options.pedantic:
231         conf.ADD_CFLAGS('-W')
232
233     if Options.options.developer:
234         conf.ADD_CFLAGS('-Wall -g -Wfatal-errors -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Werror-implicit-function-declaration -Wformat=2 -Wno-format-y2k')
235
236     conf.SAMBA_CONFIG_H()
237     conf.SAMBA_BUILD_ENV()
238
239     # look for a method of finding the list of network interfaces
240     for method in ['HAVE_IFACE_GETIFADDRS', 'HAVE_IFACE_AIX', 'HAVE_IFACE_IFCONF', 'HAVE_IFACE_IFREQ']:
241         if conf.CHECK_CODE('''
242                            #define %s 1
243                            #define NO_CONFIG_H 1
244                            #define AUTOCONF_TEST 1
245                            #define SOCKET_WRAPPER_NOT_REPLACE
246                            #include "replace.c"
247                            #include "inet_ntop.c"
248                            #include "snprintf.c"
249                            #include "getifaddrs.c"
250                            #define getifaddrs_test main
251                            #include "test/getifaddrs.c"
252                            ''' % method,
253                            method,
254                            addmain=False,
255                            execute=True):
256             break
257
258     conf.CHECK_CODE('''
259                     typedef struct {unsigned x;} FOOBAR;
260                     #define X_FOOBAR(x) ((FOOBAR) { x })
261                     #define FOO_ONE X_FOOBAR(1)
262                     FOOBAR f = FOO_ONE;
263                     static const struct {
264                         FOOBAR y;
265                     } f2[] = {
266                         {FOO_ONE}
267                     };
268                     static const FOOBAR f3[] = {FOO_ONE};
269                     ''',
270                     define='HAVE_IMMEDIATE_STRUCTURES')
271
272     conf.CHECK_CODE('mkdir("foo",0777)', define='HAVE_MKDIR_MODE')
273
274     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtim.tv_nsec', define='HAVE_STAT_TV_NSEC')
275     # we need the st_rdev test under two names
276     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_rdev', define='HAVE_STRUCT_STAT_ST_RDEV')
277     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_rdev', define='HAVE_ST_RDEV')
278     conf.CHECK_STRUCTURE_MEMBER('struct sockaddr_storage', 'ss_family')
279
280     conf.CHECK_CODE('struct sockaddr_un sunaddr; sunaddr.sun_family = AF_UNIX;',
281                     define='HAVE_UNIXSOCKET')
282
283
284     conf.CHECK_CODE('''
285                     struct stat st;
286                     char tpl[20]="/tmp/test.XXXXXX";
287                     int fd = mkstemp(tpl);
288                     if (fd == -1) exit(1);
289                     unlink(tpl);
290                     if (fstat(fd, &st) != 0) exit(1);
291                     if ((st.st_mode & 0777) != 0600) exit(1);
292                     exit(0);
293                     ''',
294                     define='HAVE_SECURE_MKSTEMP',
295                     execute=True,
296                     mandatory=True) # lets see if we get a mandatory failure for this one
297
298     if conf.CHECK_CFLAGS('-fvisibility=hidden', 'VISIBILITY_CFLAGS'):
299         conf.CHECK_CODE('''void vis_foo1(void) {}
300                            __attribute__((visibility("default"))) void vis_foo2(void) {}''',
301                         cflags=conf.env.VISIBILITY_CFLAGS,
302                         define='HAVE_VISIBILITY_ATTR')
303
304     if conf.CHECK_FUNCS('getpass getpassphrase'):
305         # if we have both, then we prefer getpassphrase
306         conf.DEFINE(REPLACE_GETPASS_BY_GETPASSPHRASE, 1)
307         conf.DEFINE(REPLACE_GETPASS, 1)
308
309     conf.CHECK_CODE('''#include "getpass.c"
310                        int main(void) { return 0; }''',
311                     addmain=False,
312                     define='REPLACE_GETPASS',
313                     cflags='-DNO_CONFIG_H')
314
315 def build(bld):
316     bld.set_rpath()
317
318     # libreplace needs to put the library in the right build groups
319     # as libreplace is a base library for everything, even for our
320     # compilers, we need libreplace to build very early
321     bld.SETUP_BUILD_GROUPS()
322
323     REPLACE_SOURCE = 'replace.c snprintf.c'
324
325     bld.SAMBA_LIBRARY('replace',
326                       source=REPLACE_SOURCE,
327                       group='base_libraries',
328                       deps='LIBREPLACE_GETPASS')
329
330     TEST_SOURCES = '''test/testsuite.c test/main.c test/strptime.c
331                       test/os2_delete.c test/getifaddrs.c'''
332
333     bld.SAMBA_BINARY('replace_testsuite',
334                      TEST_SOURCES,
335                      deps='replace',
336                      install=False)
337
338     NET_SOURCES = []
339     if bld.CONFIG_SET('HAVE_INET_NTOA'):  NET_SOURCES.append('inet_ntoa.c')
340     if bld.CONFIG_SET('HAVE_INET_ATON'):  NET_SOURCES.append('inet_aton.c')
341     if bld.CONFIG_SET('HAVE_INET_NTOP'):  NET_SOURCES.append('inet_ntop.c')
342     if bld.CONFIG_SET('HAVE_INET_PTON'):  NET_SOURCES.append('inet_pton.c')
343     if bld.CONFIG_SET('HAVE_SOCKETPAIR'): NET_SOURCES.append('socketpair.c')
344
345     bld.SAMBA_SUBSYSTEM('LIBREPLACE_NETWORK', NET_SOURCES, deps='replace')
346
347
348     CRYPT_SOURCES = []
349     if not 'HAVE_CRYPT' in bld.env: CRYPT_SOURCES.append('crypt.c')
350
351     bld.SAMBA_SUBSYSTEM('LIBREPLACE_EXT', CRYPT_SOURCES)
352
353     bld.SAMBA_SUBSYSTEM('LIBREPLACE_GETPASS', 'getpass.c',
354                         enabled=bld.CONFIG_SET('REPLACE_GETPASS'))
355
356     bld.CHECK_PROJECT_RULES()