Disable selections of USE_LINUX_THREAD_CREDENTIALS until we have specific
[garming/samba-autobuild/.git] / source3 / wscript
1 #! /usr/bin/env python
2
3 srcdir=".."
4
5 import sys, os
6 from optparse import SUPPRESS_HELP
7 sys.path.insert(0, srcdir+"/buildtools/wafsamba")
8 sys.path.insert(0, "source3")
9 import wafsamba, Options, Logs, Utils, Scripting
10 import build.charset
11 import samba_utils, samba_version
12 import samba3
13
14 Options.default_prefix = '/usr/local/samba'
15
16 def set_options(opt):
17
18     opt.add_option('--with-static-modules',
19                    help=("Comma-separated list of names of modules to statically link in"),
20                    action="store", dest='static_modules', default=None)
21     opt.add_option('--with-shared-modules',
22                    help=("Comma-separated list of names of modules to build shared"),
23                    action="store", dest='shared_modules', default=None)
24     opt.add_option('--enable-selftest',
25                   help=("enable options necessary for selftest"),
26                   action="store_true", dest='enable_selftest', default=False)
27
28     opt.SAMBA3_ADD_OPTION('winbind')
29     opt.SAMBA3_ADD_OPTION('swat')
30     opt.SAMBA3_ADD_OPTION('ads')
31     opt.SAMBA3_ADD_OPTION('ldap')
32     opt.SAMBA3_ADD_OPTION('cups', with_name="enable", without_name="disable")
33     opt.SAMBA3_ADD_OPTION('iprint', with_name="enable", without_name="disable")
34     opt.SAMBA3_ADD_OPTION('pam')
35     opt.SAMBA3_ADD_OPTION('pam_smbpass')
36     opt.SAMBA3_ADD_OPTION('quotas')
37     opt.SAMBA3_ADD_OPTION('sys-quotas')
38     opt.SAMBA3_ADD_OPTION('sendfile-support')
39     opt.SAMBA3_ADD_OPTION('utmp')
40     opt.SAMBA3_ADD_OPTION('pthreadpool', with_name="enable", without_name="disable")
41     opt.SAMBA3_ADD_OPTION('avahi', with_name="enable", without_name="disable")
42     opt.SAMBA3_ADD_OPTION('iconv')
43     opt.SAMBA3_ADD_OPTION('acl-support')
44     opt.SAMBA3_ADD_OPTION('dnsupdate')
45     opt.SAMBA3_ADD_OPTION('syslog')
46     opt.SAMBA3_ADD_OPTION('automount')
47     opt.SAMBA3_ADD_OPTION('aio-support')
48     opt.SAMBA3_ADD_OPTION('profiling-data', default=False)
49
50     opt.SAMBA3_ADD_OPTION('cluster-support')
51
52     opt.add_option('--with-ctdb-dir',
53                    help=("Directory under which ctdb is installed"),
54                    action="store", dest='ctdb_dir', default=None)
55     opt.add_option('--enable-old-ctdb',
56                   help=("enable building against (too) old version of ctdb (default=false)"),
57                   action="store_true", dest='enable_old_ctdb', default=False)
58
59
60
61 def configure(conf):
62     from samba_utils import TO_LIST
63
64     if Options.options.developer:
65         conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD')
66         conf.env.developer = True
67
68     if Options.options.with_swat:
69         conf.env['build_swat'] = True
70
71     if sys.platform != 'openbsd5':
72         conf.ADD_LDFLAGS("-Wl,--export-dynamic", testflags=True)
73
74     conf.CHECK_HEADERS('execinfo.h libexc.h libunwind.h netdb.h')
75     conf.CHECK_HEADERS('linux/falloc.h')
76
77     conf.CHECK_FUNCS('getcwd fchown chmod fchmod mknod')
78     conf.CHECK_FUNCS('strtol strchr strupr chflags')
79     conf.CHECK_FUNCS('getrlimit fsync fdatasync setpgid')
80     conf.CHECK_FUNCS('setsid glob strpbrk crypt16 getauthuid')
81     conf.CHECK_FUNCS('sigprocmask sigblock sigaction sigset innetgr')
82     conf.CHECK_FUNCS('initgroups select poll rdchk getgrnam getgrent pathconf')
83     conf.CHECK_FUNCS('setpriv setgidx setuidx setgroups syscall sysconf')
84     conf.CHECK_FUNCS('atexit grantpt fallocate posix_fallocate')
85     conf.CHECK_FUNCS('fseeko setluid')
86     conf.CHECK_FUNCS('getpwnam', headers='sys/types.h pwd.h')
87     conf.CHECK_FUNCS('fdopendir')
88     conf.CHECK_FUNCS('getpwent_r setenv strcasecmp fcvt fcvtl')
89     conf.CHECK_FUNCS('syslog vsyslog timegm setlocale')
90     conf.CHECK_FUNCS_IN('nanosleep', 'rt')
91     conf.CHECK_FUNCS('lutimes futimes utimensat futimens')
92     conf.CHECK_FUNCS('mlock munlock mlockall munlockall')
93     conf.CHECK_FUNCS('memalign posix_memalign hstrerror')
94     conf.CHECK_FUNCS('shmget')
95     conf.CHECK_FUNCS_IN('shm_open', 'rt', checklibc=True)
96     conf.CHECK_FUNCS('gettext dgettext bindtextdomain textdomain bind_textdomain_codeset')
97     #FIXME: for some reason this one still fails
98     conf.CHECK_FUNCS_IN('yp_get_default_domain', 'nsl')
99     conf.CHECK_FUNCS_IN('dn_expand _dn_expand __dn_expand', 'resolv')
100     conf.CHECK_DECLS('fdatasync', reverse=True)
101     conf.CHECK_DECLS('readahead', reverse=True, headers='fcntl.h')
102
103     if conf.CONFIG_SET('HAVE_LONG_LONG'):
104         conf.DEFINE('HAVE_LONGLONG', 1)
105
106     if conf.CHECK_CODE('''
107 #if defined(HAVE_UNISTD_H)
108 #include <unistd.h>
109 #endif
110 long ret = splice(0,0,1,0,400,SPLICE_F_MOVE);
111 ''',
112         'HAVE_LINUX_SPLICE',
113         headers='fcntl.h'):
114         conf.CHECK_DECLS('splice', reverse=True, headers='fcntl.h')
115
116     # Check for inotify support
117     conf.CHECK_HEADERS('sys/inotify.h')
118     if "HAVE_SYS_INOTIFY_H" in conf.env:
119         conf.DEFINE('HAVE_INOTIFY', 1)
120
121     # Check for kernel change notify support
122     conf.CHECK_CODE('''
123 #ifndef F_NOTIFY
124 #define F_NOTIFY 1026
125 #endif
126 main() {
127         exit(fcntl(open("/tmp", O_RDONLY), F_NOTIFY, 0) == -1 ?  1 : 0);
128 }''', 'HAVE_KERNEL_CHANGE_NOTIFY', addmain=False, execute=True,
129         headers='fcntl.h signal.h',
130         msg="Checking for kernel change notify support")
131
132     # Check for Linux kernel oplocks
133     conf.CHECK_CODE('''
134 #include <sys/types.h>
135 #include <fcntl.h>
136 #include <signal.h>
137 #ifndef F_NOTIFY
138 #define F_NOTIFY 1026
139 #endif
140 main() {
141         exit(fcntl(open("/tmp", O_RDONLY), F_NOTIFY, 0) == -1 ?  1 : 0);
142 }''', 'HAVE_KERNEL_OPLOCKS_LINUX', addmain=False, execute=True,
143         msg="Checking for Linux kernel oplocks")
144
145     # Check for IRIX kernel oplock types
146     conf.CHECK_CODE('oplock_stat_t t; t.os_state = OP_REVOKE; t.os_dev = 1; t.os_ino = 1;',
147                     'HAVE_KERNEL_OPLOCKS_IRIX', headers='fcntl.h',
148                     msg="Checking for IRIX kernel oplock types")
149
150     # Check for kernel share modes
151     conf.CHECK_CODE('''
152 #include <sys/types.h>
153 #include <fcntl.h>
154 #include <signal.h>
155 #include <sys/file.h>
156 #ifndef LOCK_MAND
157 #define LOCK_MAND        32
158 #define LOCK_READ        64
159 #endif
160 main() {
161         exit(flock(open("/dev/null", O_RDWR), LOCK_MAND|LOCK_READ) != 0);
162 }''', 'HAVE_KERNEL_SHARE_MODES', addmain=False, execute=True,
163         msg="Checking for krenel share modes")
164
165     # Check for various members of the stat structure
166     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_blocks', define='HAVE_STAT_ST_BLOCKS',
167                                 headers='sys/stat.h')
168     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_blksize', define='HAVE_STAT_ST_BLKSIZE',
169                                 headers='sys/stat.h')
170     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_flags', define='HAVE_STAT_ST_FLAGS',
171                                 headers='sys/types.h sys/stat.h unistd.h')
172
173     if "HAVE_BLKCNT_T" in conf.env:
174         conf.CHECK_CODE('''
175         return sizeof(blkcnt_t) == 4 ? 0 : 1''',
176                 'SIZEOF_BLKCNT_T_4', execute=True,
177                 headers='replace.h sys/types.h sys/stat.h unistd.h',
178                 msg="Checking whether blkcnt_t is 32 bit")
179
180     if "HAVE_BLKCNT_T" in conf.env:
181         conf.CHECK_CODE('''
182         return sizeof(blkcnt_t) == 8 ? 0 : 1''',
183                 'SIZEOF_BLKCNT_T_8', execute=True,
184                 headers='replace.h sys/types.h sys/stat.h unistd.h',
185                 msg="Checking whether blkcnt_t is 64 bit")
186
187     # Check for POSIX capability support
188     conf.CHECK_FUNCS_IN('cap_get_proc', 'cap', headers='sys/capability.h')
189
190     if "HAVE_SYS_CAPABILITY_H" in conf.env:
191         conf.CHECK_CODE('''
192         cap_t cap;
193         cap_value_t vals[1];
194         if (!(cap = cap_get_proc())) exit(1);
195         vals[0] = CAP_CHOWN;
196         cap_set_flag(cap, CAP_INHERITABLE, 1, vals, CAP_CLEAR);
197         cap_set_proc(cap);''',
198                         'HAVE_POSIX_CAPABILITIES', execute=True, lib="cap",
199                         headers='sys/capability.h',
200                         msg="Checking whether POSIX capabilities are available")
201
202     # Check for int16, uint16, int32 and uint32 in rpc/types.h included from
203     # rpc/rpc.h. This is *really* broken but some systems (DEC OSF1) do this.
204     # -- JRA.
205     if conf.CONFIG_SET("HAVE_RPC_RPC_H"):
206         conf.CHECK_TYPE('int16', headers='rpc/rpc.h',
207                         define='HAVE_INT16_FROM_RPC_RPC_H',
208                         msg="Checking for int16 typedef included by rpc/rpc.h")
209         conf.CHECK_CODE('uint16 testvar;', 'HAVE_INT16_FROM_RPC_RPC_H',
210                         headers='sys/types.h rpc/rpc.h',
211                         msg="Checking for uint16 typedef included by rpc/rpc.h")
212         conf.CHECK_CODE('int32 testvar;', 'HAVE_INT16_FROM_RPC_RPC_H',
213                         headers='sys/types.h rpc/rpc.h',
214                         msg="Checking for int32 typedef included by rpc/rpc.h")
215         conf.CHECK_CODE('uint32 testvar;', 'HAVE_INT16_FROM_RPC_RPC_H',
216                         headers='sys/types.h rpc/rpc.h',
217                         msg="Checking for uint32 typedef included by rpc/rpc.h")
218     conf.CHECK_CODE('int i;', 'BROKEN_NISPLUS_INCLUDE_FILES',
219                     headers='sys/types.h sys/acl.h rpcsvc/nis.h',
220                     msg="Checking for broken nisplus include files")
221
222     # Check if the compiler will optimize out functions
223     conf.CHECK_CODE('''
224 if (0) {
225     this_function_does_not_exist();
226 } else {
227     return 1;
228 }''', 'HAVE_COMPILER_WILL_OPTIMIZE_OUT_FNS',
229         msg="Checking if the compiler will optimize out functions")
230
231     # Check if the compiler supports the LL suffix on long long integers
232     # AIX needs this
233     conf.CHECK_CODE('long long i = 0x8000000000LL', 'COMPILER_SUPPORTS_LL',
234                     headers='stdio.h',
235                     msg="Checking for LL suffix on long long integers")
236
237     conf.CHECK_FUNCS('''
238 _acl __acl atexit 
239 bindtextdomain _chdir __chdir chflags chmod _close __close _closedir
240 __closedir crypt16 devnm dgettext dirfd
241 DNSServiceRegister _dup __dup _dup2 __dup2 endmntent execl
242 _facl __facl _fchdir
243 __fchdir fchmod fchown _fcntl __fcntl fcvt fcvtl fdatasync
244 _fork __fork fseeko
245 fsetxattr _fstat __fstat fsync
246 futimens futimes __fxstat getauthuid
247 getcwd _getcwd __getcwd getdents __getdents getdirentries
248 getgrent getgrnam getgrouplist getgrset getmntent getpagesize
249 getpwanam getpwent_r getrlimit gettext
250 glob grantpt hstrerror initgroups innetgr
251 llseek _llseek __llseek _lseek __lseek
252 _lstat __lstat lutimes
253 __lxstat memalign mknod mlock mlockall munlock munlockall
254 _open __open _opendir __opendir
255 pathconf poll posix_fallocate
256 posix_memalign prctl pread _pread __pread
257 pwrite _pwrite __pwrite
258 rdchk _read __read _readdir __readdir
259 _seekdir __seekdir
260 select setenv setgidx setgroups setlocale setluid
261 setmntent setpgid setpriv setsid setuidx
262 shmget shm_open sigaction sigblock sigprocmask sigset
263 _stat __stat statvfs
264 strcasecmp strchr strpbrk strsignal strtol strupr sysconf sysctl sysctlbyname
265 __sys_llseek syslog _telldir __telldir textdomain timegm
266 utimensat vsyslog _write __write __xstat
267 ''')
268
269     conf.CHECK_SAMBA3_CHARSET() # see build/charset.py
270
271     # FIXME: these should be tests for features, but the old build system just
272     # checks for OSes.
273     host_os = sys.platform
274     Logs.info("building on %s" % host_os)
275
276     # Python doesn't have case switches... :/
277     # FIXME: original was *linux* | gnu* | k*bsd*-gnu | kopensolaris*-gnu | *qnx*)
278     # the search for .rfind('gnu') covers gnu* and *-gnu is that too broad?
279
280     conf.SET_TARGET_TYPE('sunacl', 'EMPTY')
281     if (host_os.rfind('linux') > -1) or (host_os.rfind('gnu') > -1) or (host_os.rfind('qnx') > -1):
282         if host_os.rfind('linux') > -1:
283             conf.DEFINE('LINUX', '1')
284         elif host_os.rfind('qnx') > -1:
285             conf.DEFINE('QNX', '1')
286         conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
287     elif (host_os.rfind('darwin') > -1):
288         conf.DEFINE('DARWINOS', 1)
289         conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
290         conf.ADD_CFLAGS('-fno-common')
291     elif (host_os.rfind('freebsd') > -1):
292         if conf.CHECK_HEADERS('sunacl.h'):
293             conf.DEFINE('HAVE_FREEBSD_SUNACL_H', '1')
294             conf.CHECK_FUNCS_IN('acl', 'sunacl')
295         conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
296     elif (host_os.rfind('netbsd') > -1):
297         conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
298     elif (host_os.rfind('openbsd') > -1):
299         conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
300     elif (host_os.rfind('sunos') > -1):
301         conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
302     # FIXME: Add more checks here.
303     else:
304         Logs.warn("Unknown host_os '%s', please report this to samba-technical@samba.org" % host_os)
305
306     #FIXME: add more checks
307     if Options.options.with_acl_support:
308         if (host_os.rfind('darwin') > -1):
309             conf.DEFINE('HAVE_NO_ACLS', 1)
310             conf.SET_TARGET_TYPE('acl', 'EMPTY')
311         else:
312             conf.CHECK_FUNCS_IN('acl_get_file', 'acl')
313             if conf.CHECK_CODE('''
314 acl_t acl;
315 int entry_id;
316 acl_entry_t *entry_p;
317 return acl_get_entry(acl, entry_id, entry_p);
318 ''',
319                         'HAVE_POSIX_ACLS',
320                         headers='sys/types.h sys/acl.h', link=False,
321                         msg="Checking for POSIX ACL support") :
322                 conf.CHECK_CODE('''
323 acl_permset_t permset_d;
324 acl_perm_t perm;
325 return acl_get_perm_np(permset_d, perm);
326 ''',
327                         'HAVE_ACL_GET_PERM_NP',
328                         headers='sys/types.h sys/acl.h', link=True,
329                         msg="Checking whether acl_get_perm_np() is available")
330     else:
331         conf.DEFINE('HAVE_NO_ACLS', 1)
332         conf.SET_TARGET_TYPE('acl', 'EMPTY')
333
334     if conf.CHECK_FUNCS('dirfd'):
335         conf.DEFINE('HAVE_DIRFD_DECL', 1)
336
337     conf.CHECK_CODE('struct statfs fsd; fsid_t fsid = fsd.f_fsid; return statfs(".", &fsd);',
338                     'HAVE_STATFS_F_FSID',
339                     msg="vfs_fileid: checking for statfs() and struct statfs.f_fsid",
340                     headers='sys/types.h sys/statfs.h',
341                     execute=True)
342
343     if conf.CONFIG_SET('HAVE_FALLOCATE'):
344         conf.CHECK_CODE('''
345                 int ret = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 10);''',
346                 'HAVE_LINUX_FALLOCATE',
347                 msg="Checking whether the Linux 'fallocate' function is available",
348                 headers='unistd.h sys/types.h fcntl.h linux/falloc.h')
349     conf.CHECK_CODE('''
350                 ssize_t err = readahead(0,0,0x80000);''',
351                 'HAVE_LINUX_READAHEAD',
352                 msg="Checking whether Linux readahead is available",
353                 headers='unistd.h fcntl.h')
354     conf.CHECK_DECLS('readahead', headers='fcntl.h', always=True)
355
356     if Options.options.with_aio_support:
357         conf.CHECK_FUNCS_IN('aio_read', 'aio')
358         conf.CHECK_FUNCS_IN('aio_read', 'rt')
359         conf.CHECK_CODE('struct aiocb a; return aio_read(&a);',
360                         'HAVE_AIO',
361                         msg='Checking for asynchronous io support',
362                         headers='sys/types.h aio.h',
363                         lib='aio rt')
364         if conf.CONFIG_SET('HAVE_AIO'):
365             conf.CHECK_CODE('struct aiocb a; return aio_read(&a);', 'HAVE_AIO_READ', msg='Checking for aio_read', headers='aio.h', lib='aio rt')
366             conf.CHECK_CODE('struct aiocb a; return aio_write(&a);', 'HAVE_AIO_WRITE', msg='Checking for aio_write', headers='aio.h', lib='aio rt')
367             conf.CHECK_CODE('struct aiocb a; return aio_fsync(1, &a);', 'HAVE_AIO_FSYNC', msg='Checking for aio_fsync', headers='aio.h', lib='aio rt')
368             conf.CHECK_CODE('struct aiocb a; return aio_return(&a);', 'HAVE_AIO_RETURN', msg='Checking for aio_return', headers='aio.h', lib='aio rt')
369             conf.CHECK_CODE('struct aiocb a; return aio_error(&a);', 'HAVE_AIO_ERROR', msg='Checking for aio_error', headers='aio.h', lib='aio rt')
370             conf.CHECK_CODE('struct aiocb a; return aio_cancel(1, &a);', 'HAVE_AIO_CANCEL', msg='Checking for aio_cancel', headers='aio.h', lib='aio rt')
371             conf.CHECK_CODE('struct aiocb a; return aio_suspend(&a, 1, NULL);', 'HAVE_AIO_SUSPEND', msg='Checking for aio_suspend', headers='aio.h', lib='aio rt')
372             if host_os.rfind('linux') > -1:
373                 conf.CHECK_FUNCS_IN('io_submit', 'aio')
374                 conf.CHECK_CODE('''
375 struct io_event ioev;
376 struct iocb *ioc;
377 io_context_t ctx;
378 struct timespec ts;
379 int fd;
380 char *buf;
381 fd = eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
382 io_queue_init(128,&ctx);
383 io_prep_pwrite(ioc, 1, buf, 1, 0);
384 io_prep_pread(ioc, 1, buf, 1, 0);
385 io_set_eventfd(ioc, fd);
386 io_set_callback(ioc, (io_callback_t)(0));
387 io_submit(ctx, 1, &ioc);
388 io_getevents(ctx, 1, 1, &ioev, &ts);
389 ''',
390                         'HAVE_LINUX_KERNEL_AIO',
391                         msg='Checking for linux kernel asynchronous io support',
392                         headers='unistd.h stdlib.h sys/types.h fcntl.h sys/eventfd.h libaio.h',
393                         lib='aio')
394
395         if not conf.CONFIG_SET('HAVE_AIO'):
396             conf.DEFINE('HAVE_NO_AIO', '1')
397     else:
398         conf.DEFINE('HAVE_NO_AIO', '1')
399
400     conf.CHECK_CODE('''
401 struct msghdr msg;
402 union {
403         struct cmsghdr cm;
404         char control[CMSG_SPACE(sizeof(int))];
405 } control_un;
406 msg.msg_control = control_un.control;
407 msg.msg_controllen = sizeof(control_un.control);
408 ''',
409         'HAVE_MSGHDR_MSG_CONTROL',
410         msg='Checking if we can use msg_control for passing file descriptors',
411         headers='sys/types.h stdlib.h stddef.h sys/socket.h sys/un.h')
412     conf.CHECK_CODE('''
413 struct msghdr msg;
414 int fd;
415 msg.msg_acctrights = (caddr_t) &fd;
416 msg.msg_acctrightslen = sizeof(fd);
417 ''',
418         'HAVE_MSGHDR_MSG_ACCTRIGHTS',
419         msg='Checking if we can use msg_acctrights for passing file descriptors',
420         headers='sys/types.h stdlib.h stddef.h sys/socket.h sys/un.h')
421
422     if Options.options.with_winbind:
423         conf.env.build_winbind = True
424         conf.DEFINE('WITH_WINBIND', '1')
425
426     conf.find_program('awk', var='AWK')
427     conf.find_program('perl', var='PERL')
428
429     conf.CHECK_HEADERS('asm/types.h')
430
431     conf.CHECK_CODE('dev_t dev; int i = major(dev); return 0', "HAVE_DEVICE_MAJOR_FN",
432                     headers='unistd.h sys/types.h',
433                     msg="Checking for major macro")
434
435     conf.CHECK_CODE('dev_t dev; int i = minor(dev); return 0', "HAVE_DEVICE_MINOR_FN",
436                     headers='unistd.h sys/types.h',
437                     msg="Checking for minor macro")
438
439     conf.CHECK_STRUCTURE_MEMBER('struct dirent', 'd_off',
440                                 headers='unistd.h sys/types.h dirent.h',
441                                 define='HAVE_DIRENT_D_OFF')
442
443     conf.CHECK_FUNCS('setnetgrent getnetgrent endnetgrent')
444     if conf.CHECK_CFLAGS('-Werror-implicit-function-declaration'):
445         netgrent_cflags = '-Werror-implicit-function-declaration'
446     else:
447         netgrent_cflags = ''
448     conf.CHECK_CODE('setnetgrent("foo")', 'HAVE_SETNETGRENT_PROTOTYPE',
449                     msg="Checking for setnetgrent prototype",
450                     headers='netdb.h netgroup.h',
451                     cflags=netgrent_cflags)
452     conf.CHECK_CODE('getnetgrent', 'HAVE_GETNETGRENT_PROTOTYPE',
453                     msg="Checking for getnetgrent prototype",
454                     headers='netdb.h netgroup.h',
455                     cflags=netgrent_cflags)
456     conf.CHECK_CODE('endnetgrent', 'HAVE_ENDNETGRENT_PROTOTYPE',
457                     msg="Checking for endnetgrent prototype",
458                     headers='netdb.h netgroup.h',
459                     cflags=netgrent_cflags)
460
461
462     # Look for CUPS
463     if Options.options.with_cups:
464         conf.find_program('cups-config', var='CUPS_CONFIG')
465         if conf.env.CUPS_CONFIG:
466             # we would normally use --libs here, but cups-config incorrectly adds
467             # gssapi_krb5 and other libraries to its --libs output. That breaks the use
468             # of an in-tree heimdal kerberos
469             conf.check_cfg(path=conf.env.CUPS_CONFIG, args="--cflags --ldflags",
470                            package="", uselib_store="CUPS")
471         conf.CHECK_HEADERS('cups/cups.h cups/language.h', lib='cups')
472         conf.CHECK_FUNCS_IN('httpConnect httpConnectEncrypt', 'cups')
473         if conf.CONFIG_SET('HAVE_CUPS_CUPS_H') and conf.CONFIG_SET('HAVE_CUPS_LANGUAGE_H'):
474             conf.DEFINE('HAVE_CUPS', '1')
475         else:
476             conf.undefine('HAVE_CUPS')
477             conf.SET_TARGET_TYPE('cups', 'EMPTY')
478     else:
479         # define an empty subsystem for cups, to allow it to be used as an empty dependency
480         conf.SET_TARGET_TYPE('cups', 'EMPTY')
481
482     if Options.options.with_iprint:
483         if conf.CONFIG_SET('HAVE_CUPS'):
484             conf.DEFINE('HAVE_IPRINT', '1')
485         else:
486             Logs.warn("--enable-iprint=yes but cups support not sufficient")
487     if Options.options.with_syslog:
488         conf.DEFINE('WITH_SYSLOG', '1')
489     if Options.options.with_automount:
490         conf.DEFINE('WITH_AUTOMOUNT', '1')
491
492     # Check for LDAP
493     if Options.options.with_ldap:
494         conf.CHECK_HEADERS('ldap.h lber.h ldap_pvt.h')
495         conf.CHECK_TYPE('ber_tag_t', 'unsigned int', headers='ldap.h lber.h')
496         conf.CHECK_FUNCS_IN('ber_scanf ber_sockbuf_add_io', 'lber')
497         conf.CHECK_VARIABLE('LDAP_OPT_SOCKBUF', headers='ldap.h')
498
499         # if we LBER_OPT_LOG_PRINT_FN we can intercept ldap logging and print it out
500         # for the samba logs
501         conf.CHECK_VARIABLE('LBER_OPT_LOG_PRINT_FN',
502                             define='HAVE_LBER_LOG_PRINT_FN', headers='lber.h')
503
504         conf.CHECK_FUNCS_IN('ldap_init ldap_init_fd ldap_initialize ldap_set_rebind_proc', 'ldap')
505         conf.CHECK_FUNCS_IN('ldap_add_result_entry', 'ldap')
506
507         # Check if ldap_set_rebind_proc() takes three arguments
508         if conf.CHECK_CODE('ldap_set_rebind_proc(0, 0, 0)',
509                            'LDAP_SET_REBIND_PROC_ARGS',
510                            msg="Checking whether ldap_set_rebind_proc takes 3 arguments",
511                            headers='ldap.h lber.h', link=False):
512             conf.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '3')
513         else:
514             conf.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '2')
515
516         # last but not least, if ldap_init() exists, we want to use ldap
517         if conf.CONFIG_SET('HAVE_LDAP_INIT'):
518             conf.DEFINE('HAVE_LDAP', '1')
519             conf.DEFINE('LDAP_DEPRECATED', '1')
520             conf.env['HAVE_LDAP'] = '1'
521             # if ber_sockbuf_add_io() and LDAP_OPT_SOCKBUF are available, we can add
522             # SASL wrapping hooks
523             if conf.CONFIG_SET('HAVE_BER_SOCKBUF_ADD_IO') and \
524                     conf.CONFIG_SET('HAVE_LDAP_OPT_SOCKBUF'):
525                 conf.DEFINE('HAVE_LDAP_SASL_WRAPPING', '1')
526     else:
527         conf.SET_TARGET_TYPE('ldap', 'EMPTY')
528         conf.SET_TARGET_TYPE('lber', 'EMPTY')
529
530     if Options.options.with_ads:
531         use_ads=True
532         if not conf.CONFIG_SET('HAVE_ENCTYPE_ARCFOUR_HMAC_MD5') and \
533            not conf.CONFIG_SET('HAVE_ENCTYPE_ARCFOUR_HMAC'):
534             Logs.warn("arcfour-hmac-md5 encryption type not found in -lkrb5")
535             use_ads=False
536         if not conf.CONFIG_SET('HAVE_KRB5_MK_REQ_EXTENDED'):
537             Logs.warn("krb5_mk_req_extended not found in -lkrb5")
538             use_ads=False
539         if not conf.CONFIG_SET('HAVE_KRB5_GET_HOST_REALM'):
540             Logs.warn("krb5_get_host_realm not found in -lkrb5")
541             use_ads=False
542         if not conf.CONFIG_SET('HAVE_KRB5_FREE_HOST_REALM'):
543             Logs.warn("krb5_free_host_realm not found in -lkrb5")
544             use_ads=False
545         if not conf.CONFIG_SET('HAVE_KRB5_FWD_TGT_CREDS'):
546             Logs.warn("krb5_fwd_tgt_creds found in -lkrb5")
547             use_ads=False
548         if not conf.CONFIG_SET('HAVE_KRB5_GET_INIT_CREDS_OPT_ALLOC'):
549             Logs.warn("krb5_get_init_creds_opt_alloc not found in -lkrb5")
550             use_ads=False
551         if not conf.CONFIG_SET('KRB5_CREDS_OPT_FREE_REQUIRES_CONTEXT'):
552             Logs.warn("krb5_get_init_creds_opt_free was not found or was too old in -lkrb5")
553             use_ads=False
554         if not conf.CONFIG_SET('HAVE_KRB5_GET_RENEWED_CREDS'):
555             Logs.warn("krb5_get_renewed_creds not found in -lkrb5")
556             use_ads=False
557         if not conf.CONFIG_SET('HAVE_KRB5_PRINCIPAL_COMPARE_ANY_REALM'):
558             Logs.warn("krb5_principal_compare_any_realm not found in -lkrb5")
559             use_ads=False
560         if not conf.CONFIG_SET('HAVE_KRB5_C_STRING_TO_KEY') and \
561            not conf.CONFIG_SET('HAVE_KRB5_STRING_TO_KEY_SALT'):
562             Logs.warn("krb5_c_string_to_key not found in -lkrb5")
563             use_ads=False
564         if not conf.CONFIG_SET('HAVE_KRB5_PRINCIPAL2SALT') and \
565            not conf.CONFIG_SET('HAVE_KRB5_GET_PW_SALT'):
566             Logs.warn("no CREATE_KEY_FUNCTIONS detected")
567             use_ads=False
568         if not conf.CONFIG_SET('HAVE_KRB5_GET_PERMITTED_ENCTYPES') and \
569            not conf.CONFIG_SET('HAVE_KRB5_GET_DEFAULT_IN_TKT_ETYPES'):
570             Logs.warn("no GET_ENCTYPES_FUNCTIONS detected")
571             use_ads=False
572         if not conf.CONFIG_SET('HAVE_KRB5_KT_FREE_ENTRY') and \
573            not conf.CONFIG_SET('HAVE_KRB5_FREE_KEYTAB_ENTRY_CONTENTS'):
574             Logs.warn("no KT_FREE_FUNCTION detected")
575             use_ads=False
576         if not conf.CONFIG_SET('HAVE_KRB5_C_VERIFY_CHECKSUM'):
577             Logs.warn("krb5_c_verify_checksum_compare not found in -lkrb5")
578             use_ads=False
579
580         # We don't actually use
581         # gsskrb5_extract_authz_data_from_sec_context, but it is a
582         # clue that this Heimdal, which does the PAC processing we
583         # need on the standard gss_inquire_sec_context_by_oid
584         if not conf.CONFIG_SET('HAVE_GSS_GET_NAME_ATTRIBUTE') and \
585             not (conf.CONFIG_SET('HAVE_GSSKRB5_EXTRACT_AUTHZ_DATA_FROM_SEC_CONTEXT') and \
586                      conf.CONFIG_SET('HAVE_GSS_INQUIRE_SEC_CONTEXT_BY_OID')):
587             Logs.warn("need eiterh gss_get_name_attribute or gsskrb5_extract_authz_data_from_sec_context and gss_inquire_sec_context_by_oid in -lgssapi for PAC support")
588             use_ads=False
589
590         if not conf.CONFIG_SET('HAVE_GSS_KRB5_EXPORT_LUCID_SEC_CONTEXT'):
591             Logs.warn("need gss_krb5_export_lucid_sec_context for SPNEGO and gss_wrap support")
592             use_ads=False
593
594         if use_ads:
595             conf.DEFINE('WITH_ADS', '1')
596             conf.DEFINE('HAVE_KRB5', '1')
597             if conf.CONFIG_SET('HAVE_LDAP'):
598                 conf.env['HAVE_ADS'] = '1'
599         else:
600             Logs.warn("krb5 libs don't have all features required for Active Directory support")
601             conf.undefine('HAVE_KRB5_H')
602             conf.undefine('HAVE_GSSAPI_H')
603             conf.undefine('HAVE_GSSAPI_GSSAPI_GENERIC_H')
604             conf.undefine('HAVE_GSSAPI_GSSAPI_H')
605
606     if Options.options.with_utmp:
607         conf.env.with_utmp = True
608         if not conf.CHECK_HEADERS('utmp.h'): conf.env.with_utmp = False
609         conf.CHECK_FUNCS('pututline pututxline updwtmp updwtmpx getutmpx getutxent')
610         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_name', headers='utmp.h',
611                                     define='HAVE_UT_UT_NAME')
612         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_user', headers='utmp.h',
613                                     define='HAVE_UT_UT_USER')
614         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_id', headers='utmp.h',
615                                     define='HAVE_UT_UT_ID')
616         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_host', headers='utmp.h',
617                                     define='HAVE_UT_UT_HOST')
618         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_time', headers='utmp.h',
619                                     define='HAVE_UT_UT_TIME')
620         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_tv', headers='utmp.h',
621                                     define='HAVE_UT_UT_TV')
622         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_type', headers='utmp.h',
623                                     define='HAVE_UT_UT_TYPE')
624         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_pid', headers='utmp.h',
625                                     define='HAVE_UT_UT_PID')
626         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_exit.e_exit', headers='utmp.h',
627                                     define='HAVE_UT_UT_EXIT')
628         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_addr_v6', headers='utmp.h',
629                                     define='HAVE_UT_UT_ADDR_V6')
630         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_addr', headers='utmp.h',
631                                     define='HAVE_UT_UT_ADDR')
632         conf.CHECK_STRUCTURE_MEMBER('struct utmpx', 'ut_syslen', headers='utmpx.h',
633                                     define='HAVE_UX_UT_SYSLEN')
634         conf.CHECK_CODE('struct utmp utarg; struct utmp *utreturn; utreturn = pututline(&utarg);',
635                         'PUTUTLINE_RETURNS_UTMP', headers='utmp.h',
636                         msg="Checking whether pututline returns pointer")
637         if conf.env.with_utmp:
638             conf.DEFINE('WITH_UTMP', 1)
639
640     if Options.options.with_avahi:
641         conf.env.with_avahi = True
642         if not conf.CHECK_HEADERS('avahi-common/watch.h avahi-client/client.h'): conf.env.with_avahi = False
643         if not conf.CHECK_FUNCS_IN('avahi_client_new', 'avahi-client'): conf.env.with_avahi = False
644         if not conf.CHECK_FUNCS_IN('avahi_strerror', 'avahi-common'): conf.env.with_avahi = False
645         if conf.env.with_avahi:
646             conf.DEFINE('WITH_AVAHI_SUPPORT', 1)
647     else:
648         conf.SET_TARGET_TYPE('avahi-common', 'EMPTY')
649         conf.SET_TARGET_TYPE('avahi-client', 'EMPTY')
650
651     if Options.options.with_iconv:
652         conf.env.with_iconv = True
653         if not conf.CHECK_FUNCS_IN('iconv_open', 'iconv', headers='iconv.h'):
654             conf.env.with_iconv = False
655         if conf.env.with_iconv:
656             conf.DEFINE('HAVE_ICONV', 1)
657
658     if Options.options.with_pam:
659         use_pam=True
660         conf.CHECK_HEADERS('security/pam_appl.h pam/pam_appl.h')
661         if not conf.CONFIG_SET('HAVE_SECURITY_PAM_APPL_H') and not conf.CONFIG_SET('HAVE_PAM_PAM_APPL_H'):
662             Logs.warn("--with-pam=yes but pam_appl.h not found")
663             use_pam=False
664         conf.CHECK_FUNCS_IN('pam_get_data', 'pam')
665         conf.CHECK_HEADERS('security/pam_modules.h pam/pam_modules.h')
666         if not conf.CONFIG_SET('HAVE_SECURITY_PAM_MODULES_H') and not conf.CONFIG_SET('HAVE_PAM_PAM_MODULES_H'):
667             Logs.warn("--with-pam=yes but pam_modules.h not found")
668             use_pam=False
669         conf.CHECK_HEADERS('security/pam_ext.h security/_pam_macros.h')
670         conf.CHECK_HEADERS('pam/pam_ext.h pam/_pam_macros.h')
671         conf.CHECK_FUNCS_IN('pam_vsyslog', 'pam')
672         conf.CHECK_CODE('''
673 #if defined(HAVE_SECURITY_PAM_APPL_H)
674 #include <security/pam_appl.h>
675 #elif defined(HAVE_PAM_PAM_APPL_H)
676 #include <pam/pam_appl.h>
677 #endif
678 pam_set_item(0, PAM_RHOST, 0);
679 ''',
680             'HAVE_PAM_RHOST',
681             lib='pam',
682             msg="Checking whether PAM_RHOST is available");
683         conf.CHECK_CODE('''
684 #if defined(HAVE_SECURITY_PAM_APPL_H)
685 #include <security/pam_appl.h>
686 #elif defined(HAVE_PAM_PAM_APPL_H)
687 #include <pam/pam_appl.h>
688 #endif
689 pam_set_item(0, PAM_TTY, 0);
690 ''',
691             'HAVE_PAM_TTY',
692             lib='pam',
693             msg="Checking whether PAM_TTY is available");
694         conf.CHECK_CODE('''
695 #if (!defined(LINUX))
696
697 #define PAM_EXTERN extern
698 #if defined(HAVE_SECURITY_PAM_APPL_H)
699 #include <security/pam_appl.h>
700 #elif defined(HAVE_PAM_PAM_APPL_H)
701 #include <pam/pam_appl.h>
702 #endif
703
704 #endif
705
706 #if defined(HAVE_SECURITY_PAM_MODULES_H)
707 #include <security/pam_modules.h>
708 #elif defined(HAVE_PAM_PAM_MODULES_H)
709 #include <pam/pam_modules.h>
710 #endif
711
712 #if defined(HAVE_SECURITY__PAM_MACROS_H)
713 #include <security/_pam_macros.h>
714 #elif defined(HAVE_PAM__PAM_MACROS_H)
715 #include <pam/_pam_macros.h>
716 #endif
717
718 #ifdef HAVE_SECURITY_PAM_EXT_H
719 #include <security/pam_ext.h>
720 #endif
721
722 int i; i = PAM_RADIO_TYPE;
723 ''',
724             'HAVE_PAM_RADIO_TYPE',
725             lib='pam',
726             msg="Checking whether PAM_RADIO_TYPE is available");
727         if use_pam:
728             conf.DEFINE('WITH_PAM', 1)
729             conf.DEFINE('WITH_PAM_MODULES', 1)
730
731     seteuid = False
732 #
733 # Disable for now until Linux-64 and Linux-32 specific versions
734 # are separated out.
735 #
736 #    if not seteuid:
737 #        seteuid = conf.CHECK_CODE('''
738 #                                #define AUTOCONF_TEST 1
739 #                                #define USE_LINUX_THREAD_CREDENTIALS 1
740 #                                #include "../lib/util/setid.c"
741 #                                #include "./lib/util_sec.c"
742 #                                ''',
743 #                                'USE_LINUX_THREAD_CREDENTIALS',
744 #                                addmain=False,
745 #                                execute=True,
746 #                                msg="Checking whether we can use Linux thread-specific credentials")
747     if not seteuid:
748         seteuid = conf.CHECK_CODE('''
749                                 #define AUTOCONF_TEST 1
750                                 #define USE_SETREUID 1
751                                 #include "../lib/util/setid.c"
752                                 #include "./lib/util_sec.c"
753                                 ''',
754                                 'USE_SETREUID',
755                                 addmain=False,
756                                 execute=True,
757                                 msg="Checking whether setreuid is available")
758     if not seteuid:
759         seteuid = conf.CHECK_CODE('''
760                                 #define AUTOCONF_TEST 1
761                                 #define USE_SETRESUID 1
762                                 #include "../lib/util/setid.c"
763                                 #include "./lib/util_sec.c"
764                                 ''',
765                                 'USE_SETRESUID',
766                                 addmain=False,
767                                 execute=True,
768                                 msg="Checking whether setresuid is available")
769     if not seteuid:
770         seteuid = conf.CHECK_CODE('''
771                                 #define AUTOCONF_TEST 1
772                                 #define USE_SETEUID 1
773                                 #include "../lib/util/setid.c"
774                                 #include "./lib/util_sec.c"
775                                 ''',
776                                 'USE_SETEUID',
777                                 addmain=False,
778                                 execute=True,
779                                 msg="Checking whether seteuid is available")
780     if not seteuid:
781         seteuid = conf.CHECK_CODE('''
782                                 #define AUTOCONF_TEST 1
783                                 #define USE_SETUIDX 1
784                                 #include "../lib/util/setid.c"
785                                 #include "./lib/util_sec.c"
786                                 ''',
787                                 'USE_SETUIDX',
788                                 addmain=False,
789                                 execute=True,
790                                 mandatory=True,
791                                 msg="Checking whether setuidx is available")
792     if Options.options.with_dnsupdate:
793         if not conf.CONFIG_SET('HAVE_KRB5'):
794             Logs.warn("--with-dnsupdate=yes but gssapi support not sufficient")
795         else:
796             conf.DEFINE('WITH_DNS_UPDATES', 1)
797     conf.CHECK_HEADERS('valgrind.h valgrind/valgrind.h valgrind/memcheck.h')
798     if Options.options.developer:
799         if conf.CONFIG_SET('HAVE_VALGRIND_H') or conf.CONFIG_SET('HAVE_VALGRIND_VALGRIND_H'):
800             conf.DEFINE('VALGRIND', '1')
801
802     if conf.CHECK_CODE('''
803 #include <bits/sockaddr.h>
804 #include <linux/netlink.h>
805 ''',
806                 'HAVE_LINUX_NETLINK_H',
807                 msg="Checking whether Linux netlink is available"):
808
809         conf.CHECK_CODE('''
810 #include <bits/sockaddr.h>
811 #include <linux/netlink.h>
812 #include <linux/rtnetlink.h>
813 ''',
814                 'HAVE_LINUX_RTNETLINK_H',
815                 msg='Checking whether Linux rtnetlink is available')
816
817     conf.CHECK_CODE('''
818 #include "../tests/fcntl_lock.c"
819 ''',
820                 'HAVE_FCNTL_LOCK',
821                 addmain=False,
822                 execute=True,
823                 msg='Checking whether fcntl locking is available')
824
825 # glibc up to 2.3.6 had dangerously broken posix_fallocate(). DON'T USE IT.
826     if not conf.CHECK_CODE('''
827 #define _XOPEN_SOURCE 600
828 #include <stdlib.h>
829 #if defined(__GLIBC__) && ((__GLIBC__ < 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 4))
830 #error probably broken posix_fallocate
831 #endif
832 ''',
833                            '_HAVE_UNBROKEN_POSIX_FALLOCATE',
834                            msg='Checking for broken posix_fallocate'):
835         conf.DEFINE('HAVE_BROKEN_POSIX_FALLOCATE', '1')
836
837
838     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtim.tv_nsec',
839                                 define='HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC') # Linux, Solaris
840     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtimensec',
841                                 define='HAVE_STRUCT_STAT_ST_MTIMENSEC') # BSD, if defined _POSIX_SOURCE
842     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtimespec.tv_nsec',
843                                 define='HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC') # BSD, if not defined _POSIX_SOURCE
844     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtime_n',
845                                 define='HAVE_STRUCT_STAT_ST_MTIME_N') # AIX
846     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_umtime',
847                                 define='HAVE_STRUCT_STAT_ST_UMTIME') # Tru64
848     if conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC') or \
849        conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIMENSEC') or \
850        conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC') or \
851        conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIME_N') or \
852        conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_UMTIME'):
853         conf.DEFINE('HAVE_STAT_HIRES_TIMESTAMPS', '1')
854
855     # recent FreeBSD, NetBSD have creation timestamps called birthtime:
856     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtime',
857                                 define='HAVE_STRUCT_STAT_ST_BIRTHTIME')
858     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtimespec.tv_nsec',
859                                 define='HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC')
860     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtimensec',
861                                 define='HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC')
862
863     conf.CHECK_CODE('''
864 ssize_t err = posix_fadvise(0,0,0x80000,POSIX_FADV_WILLNEED);
865 ''',
866                 'HAVE_POSIX_FADVISE',
867                 msg='Checking whether posix_fadvise is available',
868                 headers='unistd.h fcntl.h')
869
870     for v in ['_SC_NGROUPS_MAX', '_SC_NPROC_ONLN', '_SC_NPROCESSORS_ONLN', '_SC_PAGESIZE' ]:
871         conf.CHECK_CODE('''
872                         #include <unistd.h>
873                         return sysconf(%s) == -1 ? 1 : 0;
874                         ''' % v,
875                         'SYSCONF%s' % v,
876                         msg='Checking whether sysconf(%s) is available' % v)
877
878     conf.CHECK_CODE('''
879 #include <sys/syscall.h>
880 #include <unistd.h>
881 syscall(SYS_initgroups, 16, NULL, NULL, 0);
882                     ''',
883                     'HAVE_DARWIN_INITGROUPS',
884                     msg='Checking whether to use the Darwin-specific initgroups system call')
885
886     conf.CHECK_CODE('''struct utimbuf tbuf;  tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));''',
887                     'HAVE_UTIMBUF',
888                     headers='sys/types.h utime.h',
889                     msg='Checking whether struct utimbuf is available')
890
891     if conf.CHECK_CODE('''struct sigevent s;''',
892                     'HAVE_STRUCT_SIGEVENT',
893                     headers='sys/types.h stdlib.h stddef.h signal.h',
894                     msg='Checking whether we have the struct sigevent'):
895         conf.CHECK_STRUCTURE_MEMBER('struct sigevent', 'sigev_value.sival_ptr',
896                                     define='HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR',
897                                     headers='signal.h');
898         conf.CHECK_STRUCTURE_MEMBER('struct sigevent', 'sigev_value.sigval_ptr',
899                                     define='HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIGVAL_PTR',
900                                     headers='signal.h');
901
902     if os.path.exists('/proc/sys/kernel/core_pattern'):
903         conf.DEFINE('HAVE_SYS_KERNEL_PROC_CORE_PATTERN', '1')
904
905     if conf.CHECK_CODE('''
906 #include <time.h>
907 main() {
908         struct tm *tm;
909         if (sizeof(time_t) == 8) {
910                 time_t max_time = 0x7fffffffffffffffll;
911                 tm = gmtime(&max_time);
912                 /* This should fail with 32-bit tm_year. */
913                 if (tm == NULL) {
914                         /* Max time_t that works with 32-bit int tm_year in struct tm. */
915                         max_time = 67768036191676799ll;
916                         tm = gmtime(&max_time);
917                         if (tm) {
918                                 exit(0);
919                         }
920                 }
921         }
922         exit(1);
923 }''',
924         '__TIME_T_MAX',
925         addmain=False,
926         execute=True,
927         msg="Checking for the maximum value of the 'time_t' type"):
928             conf.DEFINE('TIME_T_MAX', '67768036191676799ll')
929
930     conf.CHECK_CODE('''
931 #if defined(HAVE_UNISTD_H)
932 #include <unistd.h>
933 #endif
934 #include <sys/types.h>
935 main() { dev_t dev = makedev(1,2); return 0; }
936 ''',
937         'HAVE_MAKEDEV',
938         addmain=False,
939         msg='Checking whether the macro for makedev is available')
940
941     conf.CHECK_CODE('''
942 #include <stdio.h>
943 #include <limits.h>
944 #include <signal.h>
945
946 void exit_on_core(int ignored) {
947         exit(1);
948 }
949
950 main() {
951         char *newpath;
952         signal(SIGSEGV, exit_on_core);
953         newpath = realpath("/tmp", NULL);
954         exit((newpath != NULL) ? 0 : 1);
955 }
956 ''',
957         'REALPATH_TAKES_NULL',
958         addmain=False,
959         execute=True,
960         msg='Checking whether the realpath function allows a NULL argument')
961
962     conf.CHECK_CODE('''#include "../tests/ftruncate.c"''',
963                     'HAVE_FTRUNCATE_EXTEND',
964                     msg='Checking for ftruncate extend',
965                     addmain=False,
966                     execute=True)
967     if os.getenv('RUN_FROM_BUILD_FARM'):
968         Logs.info("enabling buildfarm hacks")
969         conf.DEFINE('ENABLE_BUILD_FARM_HACKS', '1')
970
971     if Options.options.with_sendfile_support:
972         if (host_os.rfind('linux') > -1) or (host_os.rfind('gnu') > -1) or (host_os.rfind('k*bsd*-gnu') > -1) or (host_os.rfind('kopensolaris*-gnu') > -1):
973             conf.CHECK_CODE('''
974                             int tofd, fromfd;
975                             off_t offset;
976                             size_t total;
977                             ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
978                             ''',
979                             '_HAVE_SENDFILE',
980                             headers='sys/sendfile.h',
981                             msg='Checking for linux sendfile support')
982
983             if conf.CONFIG_SET('_HAVE_SENDFILE'):
984                 conf.DEFINE('HAVE_SENDFILE', '1')
985                 conf.DEFINE('LINUX_SENDFILE_API', '1')
986                 conf.DEFINE('WITH_SENDFILE', '1')
987         elif (host_os.rfind('freebsd') > -1) or (host_os.rfind('dragonfly') > -1):
988             conf.CHECK_CODE('''
989                             #include <sys/types.h>
990                             #include <unistd.h>
991                             #include <sys/socket.h>
992                             #include <sys/uio.h>
993                             int fromfd, tofd, ret, total=0;
994                             off_t offset, nwritten;
995                             struct sf_hdtr hdr;
996                             struct iovec hdtrl;
997                             hdr.headers = &hdtrl;
998                             hdr.hdr_cnt = 1;
999                             hdr.trailers = NULL;
1000                             hdr.trl_cnt = 0;
1001                             hdtrl.iov_base = NULL;
1002                             hdtrl.iov_len = 0;
1003                             ret = sendfile(fromfd, tofd, offset, total, &hdr, &nwritten, 0)
1004                             ''',
1005                             '_HAVE_SENDFILE',
1006                             msg='Checking for freebsd sendfile support')
1007             if conf.CONFIG_SET('_HAVE_SENDFILE'):
1008                 conf.DEFINE('HAVE_SENDFILE', '1')
1009                 conf.DEFINE('FREEBSD_SENDFILE_API', '1')
1010                 conf.DEFINE('WITH_SENDFILE', '1')
1011         elif (host_os.rfind('hpux') > -1) or (host_os.rfind('osf') > -1):
1012             conf.CHECK_CODE('''
1013                             #include <sys/socket.h>
1014                             #include <sys/uio.h>
1015                             int fromfd, tofd;
1016                             size_t total=0;
1017                             struct iovec hdtrl[2];
1018                             ssize_t nwritten;
1019                             off_t offset;
1020                             hdtrl[0].iov_base = 0;
1021                             hdtrl[0].iov_len = 0;
1022                             nwritten = sendfile(tofd, fromfd, offset, total, &hdtrl[0], 0);
1023                             ''',
1024                             '_HAVE_SENDFILE',
1025                             msg='Checking for osf/hpux sendfile support')
1026             if conf.CONFIG_SET('_HAVE_SENDFILE'):
1027                 conf.DEFINE('HAVE_SENDFILE', '1')
1028                 conf.DEFINE('HPUX_SENDFILE_API', '1')
1029                 conf.DEFINE('WITH_SENDFILE', '1')
1030         elif (host_os.rfind('solaris') > -1):
1031             conf.CHECK_FUNCS_IN('sendfile', 'sendfilev')
1032             conf.CHECK_CODE('''
1033                             #include <sys/sendfile.h>,
1034                             int sfvcnt;
1035                             size_t xferred;
1036                             struct sendfilevec vec[2];
1037                             ssize_t nwritten;
1038                             int tofd;
1039                             sfvcnt = 2;
1040                             vec[0].sfv_fd = SFV_FD_SELF;
1041                             vec[0].sfv_flag = 0;
1042                             vec[0].sfv_off = 0;
1043                             vec[0].sfv_len = 0;
1044                             vec[1].sfv_fd = 0;
1045                             vec[1].sfv_flag = 0;
1046                             vec[1].sfv_off = 0;
1047                             vec[1].sfv_len = 0;
1048                             nwritten = sendfilev(tofd, vec, sfvcnt, &xferred);
1049                             ''',
1050                             '_HAVE_SENDFILEV',
1051                             msg='Checking for solaris sendfilev support')
1052             if conf.CONFIG_SET('_HAVE_SENDFILEV'):
1053                 conf.DEFINE('HAVE_SENDFILEV', '1')
1054                 conf.DEFINE('SOLARIS_SENDFILE_API', '1')
1055                 conf.DEFINE('WITH_SENDFILE', '1')
1056         elif (host_os.rfind('aix') > -1):
1057             conf.CHECK_CODE('''
1058                             #include <sys/socket.h>
1059                             int fromfd, tofd;
1060                             size_t total=0;
1061                             struct sf_parms hdtrl;
1062                             ssize_t nwritten;
1063                             hdtrl.header_data = 0;
1064                             hdtrl.header_length = 0;
1065                             hdtrl.file_descriptor = fromfd;
1066                             hdtrl.file_offset = 0;
1067                             hdtrl.file_bytes = 0;
1068                             hdtrl.trailer_data = 0;
1069                             hdtrl.trailer_length = 0;
1070                             nwritten = send_file(&tofd, &hdtrl, 0);
1071                             ''',
1072                             '_HAVE_SENDFILE',
1073                             msg='Checking for AIX send_file support')
1074             if conf.CONFIG_SET('_HAVE_SENDFILE'):
1075                 conf.DEFINE('HAVE_SENDFILE', '1')
1076                 conf.DEFINE('AIX_SENDFILE_API', '1')
1077                 conf.DEFINE('WITH_SENDFILE', '1')
1078
1079     # Check for getcwd allowing a NULL arg.
1080     conf.CHECK_CODE('''
1081 #include <unistd.h>
1082 main() {
1083         char *s = getcwd(NULL,0);
1084         exit(s != NULL ?  0 : 1);
1085 }''', 'GETCWD_TAKES_NULL', addmain=False, execute=True,
1086         msg="getcwd takes a NULL argument")
1087
1088
1089     # UnixWare 7.x has its getspnam in -lgen
1090     conf.CHECK_FUNCS_IN('getspnam', 'gen')
1091     conf.CHECK_FUNCS_IN('getspnam', 'security')
1092     conf.CHECK_FUNCS_IN('getspnam', 'sec')
1093
1094     if Options.options.with_quotas:
1095         # For quotas on Veritas VxFS filesystems
1096         conf.CHECK_HEADERS('sys/fs/vx_quota.h')
1097         # For quotas on Linux XFS filesystems
1098         conf.CHECK_HEADERS('linux/dqblk_xfs.h')
1099         # For sys/quota.h and linux/quota.h
1100         conf.CHECK_HEADERS('sys/quota.h')
1101
1102
1103     #
1104     # checking for clustering extensions (CTDB)
1105     #
1106     if not Options.options.with_cluster_support:
1107         have_cluster_support = False
1108
1109     else:
1110
1111         if Options.options.ctdb_dir:
1112             conf.ADD_EXTRA_INCLUDES(Options.options.ctdb_dir + '/include')
1113
1114         srcdir = os.path.realpath(conf.srcdir)
1115         if 'EXTRA_INCLUDES' in conf.env:
1116             includes = ' '.join(conf.env['EXTRA_INCLUDES']).replace('#', srcdir + '/')
1117         else:
1118             includes = ''
1119
1120         have_cluster_support = True
1121         ctdb_broken = ""
1122
1123         conf.CHECK_CODE('''
1124             #define NO_CONFIG_H
1125             #include "replace.h"
1126             #include "system/wait.h"
1127             #include "system/network.h"
1128             #define private #error __USED_RESERVED_WORD_private__
1129             #include <talloc.h>
1130             #include <tdb.h>
1131             #include <ctdb.h>
1132
1133             int main(void)
1134             {
1135                 return 0;
1136             }
1137             ''',
1138             'HAVE_CTDB_H',
1139             addmain=False,
1140             includes=includes,
1141             msg='Checking for header ctdb.h')
1142
1143         if not conf.CONFIG_SET('HAVE_CTDB_H'):
1144             have_cluster_support = False
1145             ctdb_broken = "ctdb.h is required for cluster support"
1146
1147         if have_cluster_support:
1148             conf.CHECK_CODE('''
1149                 #define NO_CONFIG_H
1150                 #include "replace.h"
1151                 #include "system/wait.h"
1152                 #include "system/network.h"
1153                 #define private #error __USED_RESERVED_WORD_private__
1154                 #include <talloc.h>
1155                 #include <tdb.h>
1156                 #include <ctdb.h>
1157                 #include <ctdb_private.h>
1158
1159                 int main(void)
1160                 {
1161                     return 0;
1162                 }
1163                 ''',
1164                 'HAVE_CTDB_PRIVATE_H',
1165                 addmain=False,
1166                 includes=includes,
1167                 msg='Checking for header ctdb_private.h')
1168
1169             if not conf.CONFIG_SET('HAVE_CTDB_PRIVATE_H'):
1170                 have_cluster_support = False
1171                 ctdb_broken = "ctdb_private.h is required for cluster support"
1172
1173         if have_cluster_support:
1174             conf.CHECK_CODE('''
1175                 #define NO_CONFIG_H
1176                 #include "replace.h"
1177                 #include "system/wait.h"
1178                 #include "system/network.h"
1179                 #include <talloc.h>
1180                 #include <tdb.h>
1181                 #include <ctdb.h>
1182                 #include <ctdb_private.h>
1183
1184                 int main(void)
1185                 {
1186                    int i = (int)CTDB_CONTROL_TRANS3_COMMIT;
1187                    return 0;
1188                 }
1189                 ''',
1190                 'HAVE_CTDB_CONTROL_TRANS3_COMMIT_DECL',
1191                 addmain=False,
1192                 includes=includes,
1193                 msg='Checking for transaction support (TRANS3_COMMIT control)')
1194
1195             if not conf.CONFIG_SET('HAVE_CTDB_CONTROL_TRANS3_COMMIT_DECL'):
1196                 have_cluster_support = False
1197                 ctdb_broken = "ctdb transaction support missing or too old"
1198
1199         if have_cluster_support:
1200             conf.CHECK_CODE('''
1201                 #define NO_CONFIG_H
1202                 #include "replace.h"
1203                 #include "system/wait.h"
1204                 #include "system/network.h"
1205                 #include <talloc.h>
1206                 #include <tdb.h>
1207                 #include <ctdb.h>
1208                 #include <ctdb_private.h>
1209
1210                 int main(void)
1211                 {
1212                     int i = (int)CTDB_CONTROL_SCHEDULE_FOR_DELETION;
1213                     return 0;
1214                 }
1215                 ''',
1216                 'HAVE_CTDB_CONTROL_SCHEDULE_FOR_DELETION_DECL',
1217                 addmain=False,
1218                 includes=includes,
1219                 msg='Checking for SCHEDULE_FOR_DELETION control')
1220
1221             if not conf.CONFIG_SET('HAVE_CTDB_CONTROL_SCHEDULE_FOR_DELETION_DECL'):
1222                 if not Options.options.enable_old_ctdb:
1223                     have_cluster_support = False
1224                     ctdb_broken = "SCHEDULE_FOR_DELETION control missing"
1225                 else:
1226                     Logs.warn("ignoring missing SCHEDULE_FOR_DELETION control (--enable-old-ctdb)")
1227
1228         if have_cluster_support:
1229             conf.CHECK_CODE('''
1230                 #define NO_CONFIG_H
1231                 #include "replace.h"
1232                 #include "system/wait.h"
1233                 #include "system/network.h"
1234                 #include <talloc.h>
1235                 #include <tdb.h>
1236                 #include <ctdb.h>
1237                 #include <ctdb_private.h>
1238
1239                 int main(void)
1240                 {
1241                     struct ctdb_control_tcp _x;
1242                     return 0;
1243                 }
1244                 ''',
1245                 'HAVE_STRUCT_CTDB_CONTROL_TCP',
1246                 addmain=False,
1247                 includes=includes,
1248                 msg='Checking for ctdb ipv4 support')
1249
1250             if not conf.CONFIG_SET('HAVE_STRUCT_CTDB_CONTROL_TCP'):
1251                 have_cluster_support = False
1252                 ctdb_broken = "missing struct ctdb_control_tcp"
1253
1254         if have_cluster_support:
1255             conf.CHECK_CODE('''
1256                 #define NO_CONFIG_H
1257                 #include "replace.h"
1258                 #include "system/wait.h"
1259                 #include "system/network.h"
1260                 #include <talloc.h>
1261                 #include <tdb.h>
1262                 #include <ctdb.h>
1263                 #include <ctdb_private.h>
1264
1265                 int main(void)
1266                 {
1267                     struct ctdb_control_tcp_addr _x;
1268                     return 0;
1269                 }
1270                 ''',
1271                 'HAVE_STRUCT_CTDB_CONTROL_TCP_ADDR',
1272                 addmain=False,
1273                 includes=includes,
1274                 msg='Checking for ctdb ipv6 support')
1275
1276         if have_cluster_support:
1277             conf.CHECK_CODE('''
1278                 #define NO_CONFIG_H
1279                 #include "replace.h"
1280                 #include "system/wait.h"
1281                 #include "system/network.h"
1282                 #include <talloc.h>
1283                 #include <tdb.h>
1284                 #include <ctdb.h>
1285                 #include <ctdb_private.h>
1286
1287                 int main(void)
1288                 {
1289                     int i = (int)CTDB_CONTROL_CHECK_SRVIDS;
1290                     return 0;
1291                 }
1292                 ''',
1293                 'HAVE_CTDB_CONTROL_CHECK_SRVIDS_DECL',
1294                 addmain=False,
1295                 includes=includes,
1296                 msg='Checking for CHECK_SRVIDS control')
1297
1298             if not conf.CONFIG_SET('HAVE_CTDB_CONTROL_CHECK_SRVIDS_DECL'):
1299                 if not Options.options.enable_old_ctdb:
1300                     have_cluster_support = False
1301                     ctdb_broken = "CHECK_SRVIDS control missing"
1302                 else:
1303                     Logs.warn("ignoring missing CHECK_SRVIDS control (--enable-old-ctdb)")
1304
1305     if have_cluster_support:
1306         Logs.info("building with cluster support")
1307         conf.DEFINE('CLUSTER_SUPPORT', 1);
1308     else:
1309         if not Options.options.with_cluster_support:
1310             Logs.info("building without cluster support")
1311         else:
1312             Logs.warn("building without cluster support: " + ctdb_broken)
1313         conf.undefine('CLUSTER_SUPPORT')
1314
1315
1316
1317     conf.CHECK_CODE('__attribute__((destructor)) static void cleanup(void) { }',
1318                     'HAVE_FUNCTION_ATTRIBUTE_DESTRUCTOR',
1319                     addmain=False,
1320                     link=False,
1321                     msg='Checking whether we can compile with __attribute__((destructor))')
1322
1323     conf.CHECK_CODE('void seekdir(DIR *d, long loc) { return; }',
1324                     'SEEKDIR_RETURNS_VOID',
1325                     headers='sys/types.h dirent.h',
1326                     msg='Checking whether seekdir returns void')
1327
1328     if Options.options.with_profiling_data:
1329         conf.DEFINE('WITH_PROFILE', 1);
1330
1331     PTHREAD_CFLAGS='error'
1332     PTHREAD_LDFLAGS='error'
1333
1334     if PTHREAD_LDFLAGS == 'error':
1335         if conf.CHECK_FUNCS_IN('pthread_attr_init', 'pthread'):
1336             PTHREAD_CFLAGS='-D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS'
1337             PTHREAD_LDFLAGS='-lpthread'
1338     if PTHREAD_LDFLAGS == 'error':
1339         if conf.CHECK_FUNCS_IN('pthread_attr_init', 'pthreads'):
1340             PTHREAD_CFLAGS='-D_THREAD_SAFE'
1341             PTHREAD_LDFLAGS='-lpthreads'
1342     if PTHREAD_LDFLAGS == 'error':
1343         if conf.CHECK_FUNCS_IN('pthread_attr_init', 'c_r'):
1344             PTHREAD_CFLAGS='-D_THREAD_SAFE -pthread'
1345             PTHREAD_LDFLAGS='-pthread'
1346     if PTHREAD_LDFLAGS == 'error':
1347         if conf.CHECK_FUNCS('pthread_attr_init'):
1348             PTHREAD_CFLAGS='-D_REENTRANT'
1349             PTHREAD_LDFLAGS='-lpthread'
1350     # especially for HP-UX, where the CHECK_FUNC macro fails to test for
1351     # pthread_attr_init. On pthread_mutex_lock it works there...
1352     if PTHREAD_LDFLAGS == 'error':
1353         if conf.CHECK_FUNCS_IN('pthread_mutex_lock', 'pthread'):
1354             PTHREAD_CFLAGS='-D_REENTRANT'
1355             PTHREAD_LDFLAGS='-lpthread'
1356
1357     if PTHREAD_CFLAGS != 'error' and PTHREAD_LDFLAGS != 'error':
1358         conf.ADD_CFLAGS(PTHREAD_CFLAGS)
1359         conf.ADD_LDFLAGS(PTHREAD_LDFLAGS)
1360         conf.CHECK_HEADERS('pthread.h')
1361         conf.DEFINE('HAVE_PTHREAD', '1')
1362
1363     if Options.options.with_pthreadpool:
1364         if conf.CONFIG_SET('HAVE_PTHREAD'):
1365             conf.DEFINE('WITH_PTHREADPOOL', '1')
1366         else:
1367             Logs.warn("pthreadpool support cannot be enabled when pthread support was not found")
1368             conf.undefine('WITH_PTHREADPOOL')
1369
1370     if conf.CHECK_HEADERS('gpfs_gpl.h'):
1371         conf.DEFINE('HAVE_GPFS', '1')
1372
1373     # Note that all charset 'modules' must actually be static, due to dependency loop issues 
1374     # if we include the module loader in iconv
1375
1376     default_static_modules=TO_LIST('''pdb_smbpasswd pdb_tdbsam pdb_wbc_sam
1377                                       auth_sam auth_unix auth_winbind auth_wbc
1378                                       auth_domain auth_builtin vfs_default
1379                                       nss_info_template idmap_tdb idmap_passdb
1380                                       idmap_nss''')
1381
1382     default_shared_modules=TO_LIST('''vfs_recycle vfs_audit vfs_extd_audit vfs_full_audit vfs_netatalk
1383                                       vfs_fake_perms vfs_default_quota vfs_readonly vfs_cap
1384                                       vfs_expand_msdfs vfs_shadow_copy vfs_shadow_copy2 
1385                                       auth_script vfs_readahead vfs_xattr_tdb vfs_posix_eadb
1386                                       vfs_streams_xattr vfs_streams_depot vfs_acl_xattr vfs_acl_tdb
1387                                       vfs_smb_traffic_analyzer vfs_preopen vfs_catia vfs_scannedonly
1388                                       vfs_crossrename vfs_linux_xfs_sgid
1389                                       vfs_time_audit idmap_autorid idmap_tdb2
1390                                       idmap_rid idmap_hash''')
1391
1392     if Options.options.developer:
1393         default_static_modules.extend(TO_LIST('charset_weird'))
1394         default_shared_modules.extend(TO_LIST('perfcount_test'))
1395         default_shared_modules.extend(TO_LIST('vfs_skel_opaque vfs_skel_transparent vfs_shadow_copy_test'))
1396         default_shared_modules.extend(TO_LIST('auth_skel pdb_test'))
1397
1398     if conf.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'):
1399         default_static_modules.extend(TO_LIST('pdb_samba4 auth_samba4 vfs_dfs_samba4'))
1400
1401     if Options.options.with_acl_support and conf.CONFIG_SET('HAVE_POSIX_ACLS'):
1402         default_static_modules.extend(TO_LIST('vfs_posixacl'))
1403
1404     if conf.CONFIG_SET('HAVE_FREEBSD_SUNACL_H'):
1405         default_shared_modules.extend(TO_LIST('vfs_zfsacl'))
1406
1407     if conf.CONFIG_SET('HAVE_DIRFD_DECL'):
1408         default_shared_modules.extend(TO_LIST('vfs_syncops vfs_dirsort'))
1409
1410     if conf.CONFIG_SET('HAVE_STATFS_F_FSID'):
1411         default_shared_modules.extend(TO_LIST('vfs_fileid'))
1412
1413     if conf.CONFIG_SET('HAVE_AIO') and (conf.CONFIG_SET('HAVE_MSGHDR_MSG_CONTROL') or conf.CONFIG_SET('HAVE_MSGHDR_MSG_ACCTRIGHTS')):
1414         default_shared_modules.extend(TO_LIST('vfs_aio_fork'))
1415
1416     if conf.CONFIG_SET('HAVE_AIO') and Options.options.with_pthreadpool:
1417         default_shared_modules.extend(TO_LIST('vfs_aio_pthread'))
1418
1419     if conf.CONFIG_SET('HAVE_AIO') and conf.CONFIG_SET('HAVE_LINUX_KERNEL_AIO'):
1420         default_shared_modules.extend(TO_LIST('vfs_aio_linux'))
1421
1422     if conf.CONFIG_SET('HAVE_LDAP'):
1423         default_static_modules.extend(TO_LIST('pdb_ldap idmap_ldap'))
1424
1425     if conf.CONFIG_SET('DARWINOS'):
1426         default_static_modules.extend(TO_LIST('charset_macosxfs'))
1427
1428     if conf.CONFIG_SET('HAVE_GPFS'):
1429         default_shared_modules.extend(TO_LIST('vfs_gpfs vfs_gpfs_hsm_notify'))
1430
1431     explicit_shared_modules = TO_LIST(Options.options.shared_modules, delimiter=',')
1432     explicit_static_modules = TO_LIST(Options.options.static_modules, delimiter=',')
1433
1434     final_static_modules = default_static_modules
1435     final_shared_modules = default_shared_modules
1436
1437     for m in explicit_static_modules:
1438         if m in final_shared_modules:
1439             final_shared_modules.remove(m)
1440         final_static_modules.append(m)
1441     for m in explicit_shared_modules:
1442         if m in final_static_modules:
1443             final_static_modules.remove(m)
1444         final_shared_modules.append(m)
1445
1446     conf.env['static_modules'] = final_static_modules
1447     conf.env['shared_modules'] = final_shared_modules
1448
1449     conf.DEFINE('STRING_STATIC_MODULES', ' '.join(final_static_modules), quote=True)
1450
1451     static_list = {}
1452     shared_list = {}
1453
1454     prefixes = ['vfs', 'pdb', 'auth', 'nss_info', 'charset', 'idmap', 'gpext', 'perfcount']
1455     conf.env['MODULE_PREFIXES'] = prefixes
1456     for p in prefixes:
1457         for m in final_static_modules:
1458             if m.find(p) == 0:
1459                 if not p in static_list:
1460                     static_list[p] = []
1461                 static_list[p].append(m)
1462         for m in final_shared_modules:
1463             if m.find(p) == 0:
1464                 if not p in shared_list:
1465                     shared_list[p] = []
1466                 shared_list[p].append(m)
1467
1468     for p in prefixes:
1469         static_env = "%s_STATIC" % p.upper()
1470         shared_env = "%s_SHARED" % p.upper()
1471         conf.env[static_env] = []
1472         conf.env[shared_env] = []
1473         if p in static_list:
1474             decl_list=""
1475             for entry in static_list[p]:
1476                 decl_list += "extern NTSTATUS %s_init(void); " % entry
1477                 conf.env[static_env].append('%s' % entry)
1478             decl_list = decl_list.rstrip()
1479             conf.DEFINE('static_decl_%s' % p, decl_list)
1480             conf.DEFINE('static_init_%s' % p, '{ %s_init(); }' % '_init();  '.join(static_list[p]))
1481         else:
1482             conf.DEFINE('static_decl_%s' % p, '')
1483             conf.DEFINE('static_init_%s' % p, '{}')
1484         if p in shared_list:
1485             for entry in shared_list[p]:
1486                 conf.DEFINE('%s_init' % entry, 'samba_init_module')
1487                 conf.env[shared_env].append('%s' % entry)
1488
1489     conf.SAMBA_CONFIG_H('include/config.h')
1490
1491 def ctags(ctx):
1492     "build 'tags' file using ctags"
1493     import Utils
1494     source_root = os.path.dirname(Utils.g_module.root_path)
1495     cmd = 'ctags $(find %s/.. -name "*.[ch]" | grep -v "*_proto\.h")' % source_root
1496     print("Running: %s" % cmd)
1497     os.system(cmd)
1498