s4-dns: Remove sync dns_process
[Samba/gebeck_regimport.git] / source3 / wscript
blobad055d06cab6a9e80f29c5a7c846662b4842fba0
1 #! /usr/bin/env python
3 srcdir=".."
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
14 Options.default_prefix = '/usr/local/samba'
16 def set_options(opt):
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)
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)
50 opt.SAMBA3_ADD_OPTION('cluster-support')
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)
61 def configure(conf):
62 from samba_utils import TO_LIST
64 if Options.options.developer:
65 conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD')
66 conf.env.developer = True
68 if Options.options.with_swat:
69 conf.env['build_swat'] = True
71 if sys.platform != 'openbsd5':
72 conf.ADD_LDFLAGS("-Wl,--export-dynamic", testflags=True)
74 conf.CHECK_HEADERS('execinfo.h libexc.h libunwind.h netdb.h')
75 conf.CHECK_HEADERS('linux/falloc.h')
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 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')
103 if conf.CONFIG_SET('HAVE_LONG_LONG'):
104 conf.DEFINE('HAVE_LONGLONG', 1)
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,0);
111 ''',
112 'HAVE_LINUX_SPLICE',
113 headers='fcntl.h'):
114 conf.CHECK_DECLS('splice', reverse=True, headers='fcntl.h')
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)
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")
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")
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")
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")
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')
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")
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")
187 # Check for POSIX capability support
188 conf.CHECK_FUNCS_IN('cap_get_proc', 'cap', headers='sys/capability.h')
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")
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")
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")
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")
237 conf.CHECK_FUNCS('''
238 _acl __acl add_proplist_entry atexit attr_getf attr_list attr_listf
239 attropen attr_remove attr_removef attr_set attr_setf
240 bindtextdomain _chdir __chdir chflags chmod _close __close _closedir
241 __closedir crypt16 delproplist devnm dgettext dirfd
242 DNSServiceRegister _dup __dup _dup2 __dup2 endmntent execl
243 extattr_delete_fd extattr_get_fd extattr_get_file
244 extattr_list_fd extattr_list_file
245 extattr_set_fd extattr_set_file _facl __facl _fchdir
246 __fchdir fchmod fchown _fcntl __fcntl fcvt fcvtl fdatasync
247 fdelproplist fgetea fgetproplist fgetxattr flistea flistxattr
248 _fork __fork fremoveea fremovexattr fseeko fsetea
249 fsetproplist fsetxattr _fstat __fstat fsync
250 futimens futimes __fxstat getauthuid
251 getcwd _getcwd __getcwd getdents __getdents getdirentries
252 getgrent getgrnam getgrouplist getgrset getmntent getpagesize
253 getproplist get_proplist_entry getpwanam getpwent_r getrlimit gettext
254 glob grantpt hstrerror initgroups innetgr
255 listea listxattr
256 llseek _llseek __llseek _lseek __lseek
257 _lstat __lstat lutimes
258 __lxstat memalign mknod mlock mlockall munlock munlockall
259 _open __open _opendir __opendir
260 pathconf poll posix_fallocate
261 posix_memalign prctl pread _pread __pread
262 pwrite _pwrite __pwrite
263 rdchk _read __read _readdir __readdir
264 removeea removexattr _seekdir __seekdir
265 select setea setenv setgidx setgroups setlocale setluid
266 setmntent setpgid setpriv setproplist setsid setuidx
267 setxattr shmget shm_open sigaction sigblock sigprocmask sigset
268 sizeof_proplist_entry _stat __stat statvfs
269 strcasecmp strchr strpbrk strsignal strtol strupr sysconf sysctl sysctlbyname
270 __sys_llseek syslog _telldir __telldir textdomain timegm
271 utimensat vsyslog _write __write __xstat
272 ''')
274 conf.CHECK_SAMBA3_CHARSET() # see build/charset.py
276 # FIXME: these should be tests for features, but the old build system just
277 # checks for OSes.
278 host_os = sys.platform
279 Logs.info("building on %s" % host_os)
281 # Python doesn't have case switches... :/
282 # FIXME: original was *linux* | gnu* | k*bsd*-gnu | kopensolaris*-gnu | *qnx*)
283 # the search for .rfind('gnu') covers gnu* and *-gnu is that too broad?
285 conf.SET_TARGET_TYPE('sunacl', 'EMPTY')
286 if (host_os.rfind('linux') > -1) or (host_os.rfind('gnu') > -1) or (host_os.rfind('qnx') > -1):
287 if host_os.rfind('linux') > -1:
288 conf.DEFINE('LINUX', '1')
289 elif host_os.rfind('qnx') > -1:
290 conf.DEFINE('QNX', '1')
291 conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
292 elif (host_os.rfind('darwin') > -1):
293 conf.DEFINE('DARWINOS', 1)
294 conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
295 conf.ADD_CFLAGS('-fno-common')
296 elif (host_os.rfind('freebsd') > -1):
297 if conf.CHECK_HEADERS('sunacl.h'):
298 conf.DEFINE('HAVE_FREEBSD_SUNACL_H', '1')
299 conf.CHECK_FUNCS_IN('acl', 'sunacl')
300 conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
301 elif (host_os.rfind('netbsd') > -1):
302 conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
303 elif (host_os.rfind('openbsd') > -1):
304 conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
305 elif (host_os.rfind('sunos') > -1):
306 conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
307 # FIXME: Add more checks here.
308 else:
309 Logs.warn("Unknown host_os '%s', please report this to samba-technical@samba.org" % host_os)
311 #FIXME: add more checks
312 if Options.options.with_acl_support:
313 if host_os.rfind('linux') > -1:
314 conf.CHECK_FUNCS_IN('acl_get_file', 'acl')
315 conf.CHECK_FUNCS_IN('getxattr', 'attr')
316 if conf.CHECK_CODE('''
317 acl_t acl;
318 int entry_id;
319 acl_entry_t *entry_p;
320 return acl_get_entry(acl, entry_id, entry_p);
321 ''',
322 'HAVE_POSIX_ACLS',
323 headers='sys/types.h sys/acl.h', link=False,
324 msg="Checking for POSIX ACL support") :
325 conf.CHECK_CODE('''
326 acl_permset_t permset_d;
327 acl_perm_t perm;
328 return acl_get_perm_np(permset_d, perm);
329 ''',
330 'HAVE_ACL_GET_PERM_NP',
331 headers='sys/types.h sys/acl.h', link=True,
332 msg="Checking whether acl_get_perm_np() is available")
333 else:
334 conf.DEFINE('HAVE_NO_ACLS', 1)
335 conf.SET_TARGET_TYPE('acl', 'EMPTY')
336 else:
337 conf.DEFINE('HAVE_NO_ACLS', 1)
338 conf.SET_TARGET_TYPE('acl', 'EMPTY')
340 if conf.CHECK_FUNCS('dirfd'):
341 conf.DEFINE('HAVE_DIRFD_DECL', 1)
343 conf.CHECK_CODE('struct statfs fsd; fsid_t fsid = fsd.f_fsid; return statfs(".", &fsd);',
344 'HAVE_STATFS_F_FSID',
345 msg="vfs_fileid: checking for statfs() and struct statfs.f_fsid",
346 headers='sys/types.h sys/statfs.h',
347 execute=True)
349 if conf.CONFIG_SET('HAVE_FALLOCATE'):
350 conf.CHECK_CODE('''
351 int ret = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 10);''',
352 'HAVE_LINUX_FALLOCATE',
353 msg="Checking whether the Linux 'fallocate' function is available",
354 headers='unistd.h sys/types.h fcntl.h linux/falloc.h')
355 conf.CHECK_CODE('''
356 ssize_t err = readahead(0,0,0x80000);''',
357 'HAVE_LINUX_READAHEAD',
358 msg="Checking whether Linux readahead is available",
359 headers='unistd.h fcntl.h')
360 conf.CHECK_DECLS('readahead', headers='fcntl.h', always=True)
362 if Options.options.with_aio_support:
363 conf.CHECK_FUNCS_IN('aio_read', 'aio')
364 conf.CHECK_FUNCS_IN('aio_read', 'rt')
365 conf.CHECK_CODE('struct aiocb a; return aio_read(&a);',
366 'HAVE_AIO',
367 msg='Checking for asynchronous io support',
368 headers='sys/types.h aio.h',
369 lib='aio rt')
370 if conf.CONFIG_SET('HAVE_AIO'):
371 conf.DEFINE('WITH_AIO', '1')
372 if conf.CONFIG_SET('HAVE_AIO'):
373 conf.CHECK_CODE('struct aiocb a; return aio_read(&a);', 'HAVE_AIO_READ', msg='Checking for aio_read', headers='aio.h', lib='aio rt')
374 conf.CHECK_CODE('struct aiocb a; return aio_write(&a);', 'HAVE_AIO_WRITE', msg='Checking for aio_write', headers='aio.h', lib='aio rt')
375 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')
376 conf.CHECK_CODE('struct aiocb a; return aio_return(&a);', 'HAVE_AIO_RETURN', msg='Checking for aio_return', headers='aio.h', lib='aio rt')
377 conf.CHECK_CODE('struct aiocb a; return aio_error(&a);', 'HAVE_AIO_ERROR', msg='Checking for aio_error', headers='aio.h', lib='aio rt')
378 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')
379 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')
380 if host_os.rfind('linux') > -1:
381 conf.CHECK_FUNCS_IN('io_submit', 'aio')
382 conf.CHECK_CODE('''
383 struct io_event ioev;
384 struct iocb *ioc;
385 io_context_t ctx;
386 struct timespec ts;
387 int fd;
388 char *buf;
389 fd = eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
390 io_queue_init(128,&ctx);
391 io_prep_pwrite(ioc, 1, buf, 1, 0);
392 io_prep_pread(ioc, 1, buf, 1, 0);
393 io_set_eventfd(ioc, fd);
394 io_set_callback(ioc, (io_callback_t)(0));
395 io_submit(ctx, 1, &ioc);
396 io_getevents(ctx, 1, 1, &ioev, &ts);
397 ''',
398 'HAVE_LINUX_KERNEL_AIO',
399 msg='Checking for linux kernel asynchronous io support',
400 headers='unistd.h stdlib.h sys/types.h fcntl.h sys/eventfd.h libaio.h',
401 lib='aio')
403 if not conf.CONFIG_SET('HAVE_AIO'):
404 conf.DEFINE('HAVE_NO_AIO', '1')
405 else:
406 conf.DEFINE('HAVE_NO_AIO', '1')
408 conf.CHECK_CODE('''
409 struct msghdr msg;
410 union {
411 struct cmsghdr cm;
412 char control[CMSG_SPACE(sizeof(int))];
413 } control_un;
414 msg.msg_control = control_un.control;
415 msg.msg_controllen = sizeof(control_un.control);
416 ''',
417 'HAVE_MSGHDR_MSG_CONTROL',
418 msg='Checking if we can use msg_control for passing file descriptors',
419 headers='sys/types.h stdlib.h stddef.h sys/socket.h sys/un.h')
420 conf.CHECK_CODE('''
421 struct msghdr msg;
422 int fd;
423 msg.msg_acctrights = (caddr_t) &fd;
424 msg.msg_acctrightslen = sizeof(fd);
425 ''',
426 'HAVE_MSGHDR_MSG_ACCTRIGHTS',
427 msg='Checking if we can use msg_acctrights for passing file descriptors',
428 headers='sys/types.h stdlib.h stddef.h sys/socket.h sys/un.h')
430 if Options.options.with_winbind:
431 conf.env.build_winbind = True
432 conf.DEFINE('WITH_WINBIND', '1')
434 conf.find_program('awk', var='AWK')
435 conf.find_program('perl', var='PERL')
437 # Darwin has extra options to xattr-family functions
438 conf.CHECK_CODE('getxattr(0, 0, 0, 0, 0, 0);',
439 'XATTR_ADD_OPT',
440 msg="Checking whether xattr interface takes additional options",
441 headers='sys/types.h attr/xattr.h sys/xattr.h')
443 conf.CHECK_HEADERS('asm/types.h')
445 conf.CHECK_CODE('dev_t dev; int i = major(dev); return 0', "HAVE_DEVICE_MAJOR_FN",
446 headers='unistd.h sys/types.h',
447 msg="Checking for major macro")
449 conf.CHECK_CODE('dev_t dev; int i = minor(dev); return 0', "HAVE_DEVICE_MINOR_FN",
450 headers='unistd.h sys/types.h',
451 msg="Checking for minor macro")
453 conf.CHECK_STRUCTURE_MEMBER('struct dirent', 'd_off',
454 headers='unistd.h sys/types.h dirent.h',
455 define='HAVE_DIRENT_D_OFF')
457 conf.CHECK_FUNCS('setnetgrent getnetgrent endnetgrent')
458 if conf.CHECK_CFLAGS('-Werror-implicit-function-declaration'):
459 netgrent_cflags = '-Werror-implicit-function-declaration'
460 else:
461 netgrent_cflags = ''
462 conf.CHECK_CODE('setnetgrent("foo")', 'HAVE_SETNETGRENT_PROTOTYPE',
463 msg="Checking for setnetgrent prototype",
464 headers='netdb.h netgroup.h',
465 cflags=netgrent_cflags)
466 conf.CHECK_CODE('getnetgrent', 'HAVE_GETNETGRENT_PROTOTYPE',
467 msg="Checking for getnetgrent prototype",
468 headers='netdb.h netgroup.h',
469 cflags=netgrent_cflags)
470 conf.CHECK_CODE('endnetgrent', 'HAVE_ENDNETGRENT_PROTOTYPE',
471 msg="Checking for endnetgrent prototype",
472 headers='netdb.h netgroup.h',
473 cflags=netgrent_cflags)
476 # Look for CUPS
477 if Options.options.with_cups:
478 conf.find_program('cups-config', var='CUPS_CONFIG')
479 if conf.env.CUPS_CONFIG:
480 # we would normally use --libs here, but cups-config incorrectly adds
481 # gssapi_krb5 and other libraries to its --libs output. That breaks the use
482 # of an in-tree heimdal kerberos
483 conf.check_cfg(path=conf.env.CUPS_CONFIG, args="--cflags --ldflags",
484 package="", uselib_store="CUPS")
485 conf.CHECK_HEADERS('cups/cups.h cups/language.h', lib='cups')
486 conf.CHECK_FUNCS_IN('httpConnect httpConnectEncrypt', 'cups')
487 if conf.CONFIG_SET('HAVE_CUPS_CUPS_H') and conf.CONFIG_SET('HAVE_CUPS_LANGUAGE_H'):
488 conf.DEFINE('HAVE_CUPS', '1')
489 else:
490 conf.undefine('HAVE_CUPS')
491 conf.SET_TARGET_TYPE('cups', 'EMPTY')
492 else:
493 # define an empty subsystem for cups, to allow it to be used as an empty dependency
494 conf.SET_TARGET_TYPE('cups', 'EMPTY')
496 if Options.options.with_iprint:
497 if conf.CONFIG_SET('HAVE_CUPS'):
498 conf.DEFINE('HAVE_IPRINT', '1')
499 else:
500 Logs.warn("--enable-iprint=yes but cups support not sufficient")
501 if Options.options.with_syslog:
502 conf.DEFINE('WITH_SYSLOG', '1')
503 if Options.options.with_automount:
504 conf.DEFINE('WITH_AUTOMOUNT', '1')
506 # Check for LDAP
507 if Options.options.with_ldap:
508 conf.CHECK_HEADERS('ldap.h lber.h ldap_pvt.h')
509 conf.CHECK_TYPE('ber_tag_t', 'unsigned int', headers='ldap.h lber.h')
510 conf.CHECK_FUNCS_IN('ber_scanf ber_sockbuf_add_io', 'lber')
511 conf.CHECK_VARIABLE('LDAP_OPT_SOCKBUF', headers='ldap.h')
513 # if we LBER_OPT_LOG_PRINT_FN we can intercept ldap logging and print it out
514 # for the samba logs
515 conf.CHECK_VARIABLE('LBER_OPT_LOG_PRINT_FN',
516 define='HAVE_LBER_LOG_PRINT_FN', headers='lber.h')
518 conf.CHECK_FUNCS_IN('ldap_init ldap_init_fd ldap_initialize ldap_set_rebind_proc', 'ldap')
519 conf.CHECK_FUNCS_IN('ldap_add_result_entry', 'ldap')
521 # Check if ldap_set_rebind_proc() takes three arguments
522 if conf.CHECK_CODE('ldap_set_rebind_proc(0, 0, 0)',
523 'LDAP_SET_REBIND_PROC_ARGS',
524 msg="Checking whether ldap_set_rebind_proc takes 3 arguments",
525 headers='ldap.h lber.h', link=False):
526 conf.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '3')
527 else:
528 conf.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '2')
530 # last but not least, if ldap_init() exists, we want to use ldap
531 if conf.CONFIG_SET('HAVE_LDAP_INIT'):
532 conf.DEFINE('HAVE_LDAP', '1')
533 conf.DEFINE('LDAP_DEPRECATED', '1')
534 conf.env['HAVE_LDAP'] = '1'
535 # if ber_sockbuf_add_io() and LDAP_OPT_SOCKBUF are available, we can add
536 # SASL wrapping hooks
537 if conf.CONFIG_SET('HAVE_BER_SOCKBUF_ADD_IO') and \
538 conf.CONFIG_SET('HAVE_LDAP_OPT_SOCKBUF'):
539 conf.DEFINE('HAVE_LDAP_SASL_WRAPPING', '1')
540 else:
541 conf.SET_TARGET_TYPE('ldap', 'EMPTY')
542 conf.SET_TARGET_TYPE('lber', 'EMPTY')
544 if Options.options.with_ads:
545 use_ads=True
546 if not conf.CONFIG_SET('HAVE_ENCTYPE_ARCFOUR_HMAC_MD5') and \
547 not conf.CONFIG_SET('HAVE_ENCTYPE_ARCFOUR_HMAC'):
548 Logs.warn("arcfour-hmac-md5 encryption type not found in -lkrb5")
549 use_ads=False
550 if not conf.CONFIG_SET('HAVE_KRB5_MK_REQ_EXTENDED'):
551 Logs.warn("krb5_mk_req_extended not found in -lkrb5")
552 use_ads=False
553 if not conf.CONFIG_SET('HAVE_KRB5_GET_HOST_REALM'):
554 Logs.warn("krb5_get_host_realm not found in -lkrb5")
555 use_ads=False
556 if not conf.CONFIG_SET('HAVE_KRB5_FREE_HOST_REALM'):
557 Logs.warn("krb5_free_host_realm not found in -lkrb5")
558 use_ads=False
559 if not conf.CONFIG_SET('HAVE_KRB5_FWD_TGT_CREDS'):
560 Logs.warn("krb5_fwd_tgt_creds found in -lkrb5")
561 use_ads=False
562 if not conf.CONFIG_SET('HAVE_KRB5_GET_INIT_CREDS_OPT_ALLOC'):
563 Logs.warn("krb5_get_init_creds_opt_alloc not found in -lkrb5")
564 use_ads=False
565 if not conf.CONFIG_SET('KRB5_CREDS_OPT_FREE_REQUIRES_CONTEXT'):
566 Logs.warn("krb5_get_init_creds_opt_free was not found or was too old in -lkrb5")
567 use_ads=False
568 if not conf.CONFIG_SET('HAVE_KRB5_GET_RENEWED_CREDS'):
569 Logs.warn("krb5_get_renewed_creds not found in -lkrb5")
570 use_ads=False
571 if not conf.CONFIG_SET('HAVE_KRB5_PRINCIPAL_COMPARE_ANY_REALM'):
572 Logs.warn("krb5_principal_compare_any_realm not found in -lkrb5")
573 use_ads=False
574 if not conf.CONFIG_SET('HAVE_KRB5_C_STRING_TO_KEY') and \
575 not conf.CONFIG_SET('HAVE_KRB5_STRING_TO_KEY_SALT'):
576 Logs.warn("krb5_c_string_to_key not found in -lkrb5")
577 use_ads=False
578 if not conf.CONFIG_SET('HAVE_KRB5_PRINCIPAL2SALT') and \
579 not conf.CONFIG_SET('HAVE_KRB5_GET_PW_SALT'):
580 Logs.warn("no CREATE_KEY_FUNCTIONS detected")
581 use_ads=False
582 if not conf.CONFIG_SET('HAVE_KRB5_GET_PERMITTED_ENCTYPES') and \
583 not conf.CONFIG_SET('HAVE_KRB5_GET_DEFAULT_IN_TKT_ETYPES'):
584 Logs.warn("no GET_ENCTYPES_FUNCTIONS detected")
585 use_ads=False
586 if not conf.CONFIG_SET('HAVE_KRB5_KT_FREE_ENTRY') and \
587 not conf.CONFIG_SET('HAVE_KRB5_FREE_KEYTAB_ENTRY_CONTENTS'):
588 Logs.warn("no KT_FREE_FUNCTION detected")
589 use_ads=False
590 if not conf.CONFIG_SET('HAVE_KRB5_C_VERIFY_CHECKSUM'):
591 Logs.warn("krb5_c_verify_checksum_compare not found in -lkrb5")
592 use_ads=False
594 # We don't actually use
595 # gsskrb5_extract_authz_data_from_sec_context, but it is a
596 # clue that this Heimdal, which does the PAC processing we
597 # need on the standard gss_inquire_sec_context_by_oid
598 if not conf.CONFIG_SET('HAVE_GSS_GET_NAME_ATTRIBUTE') and \
599 not (conf.CONFIG_SET('HAVE_GSSKRB5_EXTRACT_AUTHZ_DATA_FROM_SEC_CONTEXT') and \
600 conf.CONFIG_SET('HAVE_GSS_INQUIRE_SEC_CONTEXT_BY_OID')):
601 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")
602 use_ads=False
604 if not conf.CONFIG_SET('HAVE_GSS_KRB5_EXPORT_LUCID_SEC_CONTEXT'):
605 Logs.warn("need gss_krb5_export_lucid_sec_context for SPNEGO and gss_wrap support")
606 use_ads=False
608 if use_ads:
609 conf.DEFINE('WITH_ADS', '1')
610 conf.DEFINE('HAVE_KRB5', '1')
611 if conf.CONFIG_SET('HAVE_LDAP'):
612 conf.env['HAVE_ADS'] = '1'
613 else:
614 Logs.warn("krb5 libs don't have all features required for Active Directory support")
615 conf.undefine('HAVE_KRB5_H')
616 conf.undefine('HAVE_GSSAPI_H')
617 conf.undefine('HAVE_GSSAPI_GSSAPI_GENERIC_H')
618 conf.undefine('HAVE_GSSAPI_GSSAPI_H')
620 if Options.options.with_utmp:
621 conf.env.with_utmp = True
622 if not conf.CHECK_HEADERS('utmp.h'): conf.env.with_utmp = False
623 conf.CHECK_FUNCS('pututline pututxline updwtmp updwtmpx getutmpx getutxent')
624 conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_name', headers='utmp.h',
625 define='HAVE_UT_UT_NAME')
626 conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_user', headers='utmp.h',
627 define='HAVE_UT_UT_USER')
628 conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_id', headers='utmp.h',
629 define='HAVE_UT_UT_ID')
630 conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_host', headers='utmp.h',
631 define='HAVE_UT_UT_HOST')
632 conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_time', headers='utmp.h',
633 define='HAVE_UT_UT_TIME')
634 conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_tv', headers='utmp.h',
635 define='HAVE_UT_UT_TV')
636 conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_type', headers='utmp.h',
637 define='HAVE_UT_UT_TYPE')
638 conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_pid', headers='utmp.h',
639 define='HAVE_UT_UT_PID')
640 conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_exit.e_exit', headers='utmp.h',
641 define='HAVE_UT_UT_EXIT')
642 conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_addr_v6', headers='utmp.h',
643 define='HAVE_UT_UT_ADDR_V6')
644 conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_addr', headers='utmp.h',
645 define='HAVE_UT_UT_ADDR')
646 conf.CHECK_STRUCTURE_MEMBER('struct utmpx', 'ut_syslen', headers='utmpx.h',
647 define='HAVE_UX_UT_SYSLEN')
648 conf.CHECK_CODE('struct utmp utarg; struct utmp *utreturn; utreturn = pututline(&utarg);',
649 'PUTUTLINE_RETURNS_UTMP', headers='utmp.h',
650 msg="Checking whether pututline returns pointer")
651 if conf.env.with_utmp:
652 conf.DEFINE('WITH_UTMP', 1)
654 if Options.options.with_avahi:
655 conf.env.with_avahi = True
656 if not conf.CHECK_HEADERS('avahi-common/watch.h avahi-client/client.h'): conf.env.with_avahi = False
657 if not conf.CHECK_FUNCS_IN('avahi_client_new', 'avahi-client'): conf.env.with_avahi = False
658 if not conf.CHECK_FUNCS_IN('avahi_strerror', 'avahi-common'): conf.env.with_avahi = False
659 if conf.env.with_avahi:
660 conf.DEFINE('WITH_AVAHI_SUPPORT', 1)
661 else:
662 conf.SET_TARGET_TYPE('avahi-common', 'EMPTY')
663 conf.SET_TARGET_TYPE('avahi-client', 'EMPTY')
665 if Options.options.with_iconv:
666 conf.env.with_iconv = True
667 if not conf.CHECK_FUNCS_IN('iconv_open', 'iconv', headers='iconv.h'):
668 conf.env.with_iconv = False
669 if conf.env.with_iconv:
670 conf.DEFINE('HAVE_ICONV', 1)
672 if Options.options.with_pam:
673 use_pam=True
674 conf.CHECK_HEADERS('security/pam_appl.h pam/pam_appl.h')
675 if not conf.CONFIG_SET('HAVE_SECURITY_PAM_APPL_H') and not conf.CONFIG_SET('HAVE_PAM_PAM_APPL_H'):
676 Logs.warn("--with-pam=yes but pam_appl.h not found")
677 use_pam=False
678 conf.CHECK_FUNCS_IN('pam_get_data', 'pam')
679 conf.CHECK_HEADERS('security/pam_modules.h pam/pam_modules.h')
680 if not conf.CONFIG_SET('HAVE_SECURITY_PAM_MODULES_H') and not conf.CONFIG_SET('HAVE_PAM_PAM_MODULES_H'):
681 Logs.warn("--with-pam=yes but pam_modules.h not found")
682 use_pam=False
683 conf.CHECK_HEADERS('security/pam_ext.h security/_pam_macros.h')
684 conf.CHECK_HEADERS('pam/pam_ext.h pam/_pam_macros.h')
685 conf.CHECK_FUNCS_IN('pam_vsyslog', 'pam')
686 conf.CHECK_CODE('''
687 #if defined(HAVE_SECURITY_PAM_APPL_H)
688 #include <security/pam_appl.h>
689 #elif defined(HAVE_PAM_PAM_APPL_H)
690 #include <pam/pam_appl.h>
691 #endif
692 pam_set_item(0, PAM_RHOST, 0);
693 ''',
694 'HAVE_PAM_RHOST',
695 lib='pam',
696 msg="Checking whether PAM_RHOST is available");
697 conf.CHECK_CODE('''
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 pam_set_item(0, PAM_TTY, 0);
704 ''',
705 'HAVE_PAM_TTY',
706 lib='pam',
707 msg="Checking whether PAM_TTY is available");
708 conf.CHECK_CODE('''
709 #if (!defined(LINUX))
711 #define PAM_EXTERN extern
712 #if defined(HAVE_SECURITY_PAM_APPL_H)
713 #include <security/pam_appl.h>
714 #elif defined(HAVE_PAM_PAM_APPL_H)
715 #include <pam/pam_appl.h>
716 #endif
718 #endif
720 #if defined(HAVE_SECURITY_PAM_MODULES_H)
721 #include <security/pam_modules.h>
722 #elif defined(HAVE_PAM_PAM_MODULES_H)
723 #include <pam/pam_modules.h>
724 #endif
726 #if defined(HAVE_SECURITY__PAM_MACROS_H)
727 #include <security/_pam_macros.h>
728 #elif defined(HAVE_PAM__PAM_MACROS_H)
729 #include <pam/_pam_macros.h>
730 #endif
732 #ifdef HAVE_SECURITY_PAM_EXT_H
733 #include <security/pam_ext.h>
734 #endif
736 int i; i = PAM_RADIO_TYPE;
737 ''',
738 'HAVE_PAM_RADIO_TYPE',
739 lib='pam',
740 msg="Checking whether PAM_RADIO_TYPE is available");
741 if use_pam:
742 conf.DEFINE('WITH_PAM', 1)
743 conf.DEFINE('WITH_PAM_MODULES', 1)
745 seteuid = False
746 if not seteuid:
747 seteuid = conf.CHECK_CODE('''
748 #define AUTOCONF_TEST 1
749 #define USE_SETREUID 1
750 #include "./lib/util_sec.c"
751 ''',
752 'USE_SETREUID',
753 addmain=False,
754 execute=True,
755 msg="Checking whether setreuid is available")
756 if not seteuid:
757 seteuid = conf.CHECK_CODE('''
758 #define AUTOCONF_TEST 1
759 #define USE_SETRESUID 1
760 #include "./lib/util_sec.c"
761 ''',
762 'USE_SETRESUID',
763 addmain=False,
764 execute=True,
765 msg="Checking whether setresuid is available")
766 if not seteuid:
767 seteuid = conf.CHECK_CODE('''
768 #define AUTOCONF_TEST 1
769 #define USE_SETEUID 1
770 #include "./lib/util_sec.c"
771 ''',
772 'USE_SETEUID',
773 addmain=False,
774 execute=True,
775 msg="Checking whether seteuid is available")
776 if not seteuid:
777 seteuid = conf.CHECK_CODE('''
778 #define AUTOCONF_TEST 1
779 #define USE_SETUIDX 1
780 #include "./lib/util_sec.c"
781 ''',
782 'USE_SETUIDX',
783 addmain=False,
784 execute=True,
785 mandatory=True,
786 msg="Checking whether setuidx is available")
787 if Options.options.with_dnsupdate:
788 if not conf.CONFIG_SET('HAVE_KRB5'):
789 Logs.warn("--with-dnsupdate=yes but gssapi support not sufficient")
790 else:
791 conf.DEFINE('WITH_DNS_UPDATES', 1)
792 conf.CHECK_HEADERS('valgrind.h valgrind/valgrind.h valgrind/memcheck.h')
793 if Options.options.developer:
794 if conf.CONFIG_SET('HAVE_VALGRIND_H') or conf.CONFIG_SET('HAVE_VALGRIND_VALGRIND_H'):
795 conf.DEFINE('VALGRIND', '1')
797 if conf.CHECK_CODE('''
798 #include <bits/sockaddr.h>
799 #include <linux/netlink.h>
800 ''',
801 'HAVE_LINUX_NETLINK_H',
802 msg="Checking whether Linux netlink is available"):
803 conf.CHECK_CODE('''
804 #include <bits/sockaddr.h>
805 #include <linux/netlink.h>
806 #include <linux/rtnetlink.h>
807 ''',
808 'HAVE_LINUX_RTNETLINK_H',
809 msg='Checking whether Linux rtnetlink is available')
810 conf.CHECK_CODE('''
811 #include "../tests/fcntl_lock.c"
812 ''',
813 'HAVE_FCNTL_LOCK',
814 addmain=False,
815 execute=True,
816 msg='Checking whether fcntl locking is available')
818 conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtim.tv_nsec',
819 define='HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC') # Linux, Solaris
820 conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtimensec',
821 define='HAVE_STRUCT_STAT_ST_MTIMENSEC') # BSD, if defined _POSIX_SOURCE
822 conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtimespec.tv_nsec',
823 define='HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC') # BSD, if not defined _POSIX_SOURCE
824 conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtime_n',
825 define='HAVE_STRUCT_STAT_ST_MTIME_N') # AIX
826 conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_umtime',
827 define='HAVE_STRUCT_STAT_ST_UMTIME') # Tru64
828 if conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC') or \
829 conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIMENSEC') or \
830 conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC') or \
831 conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIME_N') or \
832 conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_UMTIME'):
833 conf.DEFINE('HAVE_STAT_HIRES_TIMESTAMPS', '1')
835 # recent FreeBSD, NetBSD have creation timestamps called birthtime:
836 conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtime',
837 define='HAVE_STRUCT_STAT_ST_BIRTHTIME')
838 conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtimespec.tv_nsec',
839 define='HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC')
840 conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtimensec',
841 define='HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC')
843 conf.CHECK_CODE('''
844 ssize_t err = posix_fadvise(0,0,0x80000,POSIX_FADV_WILLNEED);
845 ''',
846 'HAVE_POSIX_FADVISE',
847 msg='Checking whether posix_fadvise is available',
848 headers='unistd.h fcntl.h')
850 for v in ['_SC_NGROUPS_MAX', '_SC_NPROC_ONLN', '_SC_NPROCESSORS_ONLN', '_SC_PAGESIZE' ]:
851 conf.CHECK_CODE('''
852 #include <unistd.h>
853 return sysconf(%s) == -1 ? 1 : 0;
854 ''' % v,
855 'SYSCONF%s' % v,
856 msg='Checking whether sysconf(%s) is available' % v)
858 conf.CHECK_CODE('''
859 #include <sys/syscall.h>
860 #include <unistd.h>
861 syscall(SYS_initgroups, 16, NULL, NULL, 0);
862 ''',
863 'HAVE_DARWIN_INITGROUPS',
864 msg='Checking whether to use the Darwin-specific initgroups system call')
866 conf.CHECK_CODE('''struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));''',
867 'HAVE_UTIMBUF',
868 headers='sys/types.h utime.h',
869 msg='Checking whether struct utimbuf is available')
871 if conf.CHECK_CODE('''struct sigevent s;''',
872 'HAVE_STRUCT_SIGEVENT',
873 headers='sys/types.h stdlib.h stddef.h signal.h',
874 msg='Checking whether we have the struct sigevent'):
875 conf.CHECK_STRUCTURE_MEMBER('struct sigevent', 'sigev_value.sival_ptr',
876 define='HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR',
877 headers='signal.h');
878 conf.CHECK_STRUCTURE_MEMBER('struct sigevent', 'sigev_value.sigval_ptr',
879 define='HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIGVAL_PTR',
880 headers='signal.h');
882 if os.path.exists('/proc/sys/kernel/core_pattern'):
883 conf.DEFINE('HAVE_SYS_KERNEL_PROC_CORE_PATTERN', '1')
885 if conf.CHECK_CODE('''
886 #include <time.h>
887 main() {
888 struct tm *tm;
889 if (sizeof(time_t) == 8) {
890 time_t max_time = 0x7fffffffffffffffll;
891 tm = gmtime(&max_time);
892 /* This should fail with 32-bit tm_year. */
893 if (tm == NULL) {
894 /* Max time_t that works with 32-bit int tm_year in struct tm. */
895 max_time = 67768036191676799ll;
896 tm = gmtime(&max_time);
897 if (tm) {
898 exit(0);
902 exit(1);
903 }''',
904 '__TIME_T_MAX',
905 addmain=False,
906 execute=True,
907 msg="Checking for the maximum value of the 'time_t' type"):
908 conf.DEFINE('TIME_T_MAX', '67768036191676799ll')
910 conf.CHECK_CODE('''
911 #if defined(HAVE_UNISTD_H)
912 #include <unistd.h>
913 #endif
914 #include <sys/types.h>
915 main() { dev_t dev = makedev(1,2); return 0; }
916 ''',
917 'HAVE_MAKEDEV',
918 addmain=False,
919 msg='Checking whether the macro for makedev is available')
921 conf.CHECK_CODE('''
922 #include <stdio.h>
923 #include <limits.h>
924 #include <signal.h>
926 void exit_on_core(int ignored) {
927 exit(1);
930 main() {
931 char *newpath;
932 signal(SIGSEGV, exit_on_core);
933 newpath = realpath("/tmp", NULL);
934 exit((newpath != NULL) ? 0 : 1);
936 ''',
937 'REALPATH_TAKES_NULL',
938 addmain=False,
939 execute=True,
940 msg='Checking whether the realpath function allows a NULL argument')
942 conf.CHECK_CODE('''#include "../tests/ftruncate.c"''',
943 'HAVE_FTRUNCATE_EXTEND',
944 msg='Checking for ftruncate extend',
945 addmain=False,
946 execute=True)
947 if os.getenv('RUN_FROM_BUILD_FARM'):
948 Logs.info("enabling buildfarm hacks")
949 conf.DEFINE('ENABLE_BUILD_FARM_HACKS', '1')
951 if Options.options.with_sendfile_support:
952 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):
953 conf.CHECK_CODE('''
954 int tofd, fromfd;
955 off_t offset;
956 size_t total;
957 ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
958 ''',
959 '_HAVE_SENDFILE',
960 headers='sys/sendfile',
961 msg='Checking for linux sendfile support')
963 # Try and cope with broken Linux sendfile....
964 conf.CHECK_CODE('''#if defined(_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
965 #undef _FILE_OFFSET_BITS
966 #endif
967 #include <sys/sendfile.h>
968 int tofd, fromfd;
969 off_t offset;
970 size_t total;
971 ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
972 ''',
973 '_HAVE_BROKEN_LINUX_SENDFILE',
974 msg='Checking for broken linux sendfile support')
975 if conf.CONFIG_SET('_HAVE_SENDFILE'):
976 conf.DEFINE('HAVE_SENDFILE', '1')
977 conf.DEFINE('LINUX_SENDFILE_API', '1')
978 conf.DEFINE('WITH_SENDFILE', '1')
979 elif conf.CONFIG_SET('_HAVE_BROKEN_LINUX_SENDFILE'):
980 conf.DEFINE('LINUX_BROKEN_SENDFILE_API', '1')
981 conf.DEFINE('WITH_SENDFILE', '1')
982 elif (host_os.rfind('freebsd') > -1) or (host_os.rfind('dragonfly') > -1):
983 conf.CHECK_CODE('''
984 #include <sys/types.h>
985 #include <unistd.h>
986 #include <sys/socket.h>
987 #include <sys/uio.h>
988 int fromfd, tofd, ret, total=0;
989 off_t offset, nwritten;
990 struct sf_hdtr hdr;
991 struct iovec hdtrl;
992 hdr.headers = &hdtrl;
993 hdr.hdr_cnt = 1;
994 hdr.trailers = NULL;
995 hdr.trl_cnt = 0;
996 hdtrl.iov_base = NULL;
997 hdtrl.iov_len = 0;
998 ret = sendfile(fromfd, tofd, offset, total, &hdr, &nwritten, 0)
999 ''',
1000 '_HAVE_SENDFILE',
1001 msg='Checking for freebsd sendfile support')
1002 if conf.CONFIG_SET('_HAVE_SENDFILE'):
1003 conf.DEFINE('HAVE_SENDFILE', '1')
1004 conf.DEFINE('FREEBSD_SENDFILE_API', '1')
1005 conf.DEFINE('WITH_SENDFILE', '1')
1006 elif (host_os.rfind('hpux') > -1):
1007 conf.CHECK_CODE('''
1008 #include <sys/socket.h>
1009 #include <sys/uio.h>
1010 int fromfd, tofd;
1011 size_t total=0;
1012 struct iovec hdtrl[2];
1013 ssize_t nwritten;
1014 off_t offset;
1015 hdtrl[0].iov_base = 0;
1016 hdtrl[0].iov_len = 0;
1017 nwritten = sendfile(tofd, fromfd, offset, total, &hdtrl[0], 0);
1018 ''',
1019 '_HAVE_SENDFILE',
1020 msg='Checking for hpux sendfile support')
1021 if conf.CONFIG_SET('_HAVE_SENDFILE'):
1022 conf.DEFINE('HAVE_SENDFILE', '1')
1023 conf.DEFINE('HPUX_SENDFILE_API', '1')
1024 conf.DEFINE('WITH_SENDFILE', '1')
1025 elif (host_os.rfind('solaris') > -1):
1026 conf.CHECK_FUNCS_IN('sendfile', 'sendfilev')
1027 conf.CHECK_CODE('''
1028 #include <sys/sendfile.h>,
1029 int sfvcnt;
1030 size_t xferred;
1031 struct sendfilevec vec[2];
1032 ssize_t nwritten;
1033 int tofd;
1034 sfvcnt = 2;
1035 vec[0].sfv_fd = SFV_FD_SELF;
1036 vec[0].sfv_flag = 0;
1037 vec[0].sfv_off = 0;
1038 vec[0].sfv_len = 0;
1039 vec[1].sfv_fd = 0;
1040 vec[1].sfv_flag = 0;
1041 vec[1].sfv_off = 0;
1042 vec[1].sfv_len = 0;
1043 nwritten = sendfilev(tofd, vec, sfvcnt, &xferred);
1044 ''',
1045 '_HAVE_SENDFILEV',
1046 msg='Checking for solaris sendfilev support')
1047 if conf.CONFIG_SET('_HAVE_SENDFILEV'):
1048 conf.DEFINE('HAVE_SENDFILEV', '1')
1049 conf.DEFINE('SOLARIS_SENDFILE_API', '1')
1050 conf.DEFINE('WITH_SENDFILE', '1')
1051 elif (host_os.rfind('aix') > -1):
1052 conf.CHECK_CODE('''
1053 #include <sys/socket.h>
1054 int fromfd, tofd;
1055 size_t total=0;
1056 struct sf_parms hdtrl;
1057 ssize_t nwritten;
1058 hdtrl.header_data = 0;
1059 hdtrl.header_length = 0;
1060 hdtrl.file_descriptor = fromfd;
1061 hdtrl.file_offset = 0;
1062 hdtrl.file_bytes = 0;
1063 hdtrl.trailer_data = 0;
1064 hdtrl.trailer_length = 0;
1065 nwritten = send_file(&tofd, &hdtrl, 0);
1066 ''',
1067 '_HAVE_SENDFILE',
1068 msg='Checking for AIX send_file support')
1069 if conf.CONFIG_SET('_HAVE_SENDFILE'):
1070 conf.DEFINE('HAVE_SENDFILE', '1')
1071 conf.DEFINE('AIX_SENDFILE_API', '1')
1072 conf.DEFINE('WITH_SENDFILE', '1')
1074 # Check for getcwd allowing a NULL arg.
1075 conf.CHECK_CODE('''
1076 #include <unistd.h>
1077 main() {
1078 char *s = getcwd(NULL,0);
1079 exit(s != NULL ? 0 : 1);
1080 }''', 'GETCWD_TAKES_NULL', addmain=False, execute=True,
1081 msg="getcwd takes a NULL argument")
1084 # UnixWare 7.x has its getspnam in -lgen
1085 conf.CHECK_FUNCS_IN('getspnam', 'gen')
1086 conf.CHECK_FUNCS_IN('getspnam', 'security')
1087 conf.CHECK_FUNCS_IN('getspnam', 'sec')
1089 if Options.options.with_quotas:
1090 # For quotas on Veritas VxFS filesystems
1091 conf.CHECK_HEADERS('sys/fs/vx_quota.h')
1092 # For quotas on Linux XFS filesystems
1093 conf.CHECK_HEADERS('linux/dqblk_xfs.h')
1094 # For sys/quota.h and linux/quota.h
1095 conf.CHECK_HEADERS('sys/quota.h')
1099 # checking for clustering extensions (CTDB)
1101 if not Options.options.with_cluster_support:
1102 have_cluster_support = False
1104 else:
1106 if Options.options.ctdb_dir:
1107 conf.ADD_EXTRA_INCLUDES(Options.options.ctdb_dir + '/include')
1109 srcdir = os.path.realpath(conf.srcdir)
1110 if 'EXTRA_INCLUDES' in conf.env:
1111 includes = ' '.join(conf.env['EXTRA_INCLUDES']).replace('#', srcdir + '/')
1112 else:
1113 includes = ''
1115 have_cluster_support = True
1116 ctdb_broken = ""
1118 conf.CHECK_CODE('''
1119 #define NO_CONFIG_H
1120 #include "replace.h"
1121 #include "system/wait.h"
1122 #include "system/network.h"
1123 #define private #error __USED_RESERVED_WORD_private__
1124 #include <talloc.h>
1125 #include <tdb.h>
1126 #include <ctdb.h>
1128 int main(void)
1130 return 0;
1132 ''',
1133 'HAVE_CTDB_H',
1134 addmain=False,
1135 includes=includes,
1136 msg='Checking for header ctdb.h')
1138 if not conf.CONFIG_SET('HAVE_CTDB_H'):
1139 have_cluster_support = False
1140 ctdb_broken = "ctdb.h is required for cluster support"
1142 if have_cluster_support:
1143 conf.CHECK_CODE('''
1144 #define NO_CONFIG_H
1145 #include "replace.h"
1146 #include "system/wait.h"
1147 #include "system/network.h"
1148 #define private #error __USED_RESERVED_WORD_private__
1149 #include <talloc.h>
1150 #include <tdb.h>
1151 #include <ctdb.h>
1152 #include <ctdb_private.h>
1154 int main(void)
1156 return 0;
1158 ''',
1159 'HAVE_CTDB_PRIVATE_H',
1160 addmain=False,
1161 includes=includes,
1162 msg='Checking for header ctdb_private.h')
1164 if not conf.CONFIG_SET('HAVE_CTDB_PRIVATE_H'):
1165 have_cluster_support = False
1166 ctdb_broken = "ctdb_private.h is required for cluster support"
1168 if have_cluster_support:
1169 conf.CHECK_CODE('''
1170 #define NO_CONFIG_H
1171 #include "replace.h"
1172 #include "system/wait.h"
1173 #include "system/network.h"
1174 #include <talloc.h>
1175 #include <tdb.h>
1176 #include <ctdb.h>
1177 #include <ctdb_private.h>
1179 int main(void)
1181 int i = (int)CTDB_CONTROL_TRANS3_COMMIT;
1182 return 0;
1184 ''',
1185 'HAVE_CTDB_CONTROL_TRANS3_COMMIT_DECL',
1186 addmain=False,
1187 includes=includes,
1188 msg='Checking for transaction support (TRANS3_COMMIT control)')
1190 if not conf.CONFIG_SET('HAVE_CTDB_CONTROL_TRANS3_COMMIT_DECL'):
1191 have_cluster_support = False
1192 ctdb_broken = "ctdb transaction support missing or too old"
1194 if have_cluster_support:
1195 conf.CHECK_CODE('''
1196 #define NO_CONFIG_H
1197 #include "replace.h"
1198 #include "system/wait.h"
1199 #include "system/network.h"
1200 #include <talloc.h>
1201 #include <tdb.h>
1202 #include <ctdb.h>
1203 #include <ctdb_private.h>
1205 int main(void)
1207 int i = (int)CTDB_CONTROL_SCHEDULE_FOR_DELETION;
1208 return 0;
1210 ''',
1211 'HAVE_CTDB_CONTROL_SCHEDULE_FOR_DELETION_DECL',
1212 addmain=False,
1213 includes=includes,
1214 msg='Checking for SCHEDULE_FOR_DELETION control')
1216 if not conf.CONFIG_SET('HAVE_CTDB_CONTROL_SCHEDULE_FOR_DELETION_DECL'):
1217 if not Options.options.enable_old_ctdb:
1218 have_cluster_support = False
1219 ctdb_broken = "SCHEDULE_FOR_DELETION control missing"
1220 else:
1221 Logs.warn("ignoring missing SCHEDULE_FOR_DELETION control (--enable-old-ctdb)")
1223 if have_cluster_support:
1224 conf.CHECK_CODE('''
1225 #define NO_CONFIG_H
1226 #include "replace.h"
1227 #include "system/wait.h"
1228 #include "system/network.h"
1229 #include <talloc.h>
1230 #include <tdb.h>
1231 #include <ctdb.h>
1232 #include <ctdb_private.h>
1234 int main(void)
1236 struct ctdb_control_tcp _x;
1237 return 0;
1239 ''',
1240 'HAVE_STRUCT_CTDB_CONTROL_TCP',
1241 addmain=False,
1242 includes=includes,
1243 msg='Checking for ctdb ipv4 support')
1245 if not conf.CONFIG_SET('HAVE_STRUCT_CTDB_CONTROL_TCP'):
1246 have_cluster_support = False
1247 ctdb_broken = "missing struct ctdb_control_tcp"
1249 if have_cluster_support:
1250 conf.CHECK_CODE('''
1251 #define NO_CONFIG_H
1252 #include "replace.h"
1253 #include "system/wait.h"
1254 #include "system/network.h"
1255 #include <talloc.h>
1256 #include <tdb.h>
1257 #include <ctdb.h>
1258 #include <ctdb_private.h>
1260 int main(void)
1262 struct ctdb_control_tcp_addr _x;
1263 return 0;
1265 ''',
1266 'HAVE_STRUCT_CTDB_CONTROL_TCP_ADDR',
1267 addmain=False,
1268 includes=includes,
1269 msg='Checking for ctdb ipv6 support')
1271 if have_cluster_support:
1272 conf.CHECK_CODE('''
1273 #define NO_CONFIG_H
1274 #include "replace.h"
1275 #include "system/wait.h"
1276 #include "system/network.h"
1277 #include <talloc.h>
1278 #include <tdb.h>
1279 #include <ctdb.h>
1280 #include <ctdb_private.h>
1282 int main(void)
1284 int i = (int)CTDB_CONTROL_CHECK_SRVIDS;
1285 return 0;
1287 ''',
1288 'HAVE_CTDB_CONTROL_CHECK_SRVIDS_DECL',
1289 addmain=False,
1290 includes=includes,
1291 msg='Checking for CHECK_SRVIDS control')
1293 if not conf.CONFIG_SET('HAVE_CTDB_CONTROL_CHECK_SRVIDS_DECL'):
1294 if not Options.options.enable_old_ctdb:
1295 have_cluster_support = False
1296 ctdb_broken = "CHECK_SRVIDS control missing"
1297 else:
1298 Logs.warn("ignoring missing CHECK_SRVIDS control (--enable-old-ctdb)")
1300 if have_cluster_support:
1301 Logs.info("building with cluster support")
1302 conf.DEFINE('CLUSTER_SUPPORT', 1);
1303 else:
1304 if not Options.options.with_cluster_support:
1305 Logs.info("building without cluster support")
1306 else:
1307 Logs.warn("building without cluster support: " + ctdb_broken)
1308 conf.undefine('CLUSTER_SUPPORT')
1312 conf.CHECK_CODE('__attribute__((destructor)) static void cleanup(void) { }',
1313 'HAVE_FUNCTION_ATTRIBUTE_DESTRUCTOR',
1314 addmain=False,
1315 link=False,
1316 msg='Checking whether we can compile with __attribute__((destructor))')
1318 conf.CHECK_CODE('void seekdir(DIR *d, long loc) { return; }',
1319 'SEEKDIR_RETURNS_VOID',
1320 headers='sys/types.h dirent.h',
1321 msg='Checking whether seekdir returns void')
1323 if Options.options.with_profiling_data:
1324 conf.DEFINE('WITH_PROFILE', 1);
1326 PTHREAD_CFLAGS='error'
1327 PTHREAD_LDFLAGS='error'
1329 if PTHREAD_LDFLAGS == 'error':
1330 if conf.CHECK_FUNCS_IN('pthread_attr_init', 'pthread'):
1331 PTHREAD_CFLAGS='-D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS'
1332 PTHREAD_LDFLAGS='-lpthread'
1333 if PTHREAD_LDFLAGS == 'error':
1334 if conf.CHECK_FUNCS_IN('pthread_attr_init', 'pthreads'):
1335 PTHREAD_CFLAGS='-D_THREAD_SAFE'
1336 PTHREAD_LDFLAGS='-lpthreads'
1337 if PTHREAD_LDFLAGS == 'error':
1338 if conf.CHECK_FUNCS_IN('pthread_attr_init', 'c_r'):
1339 PTHREAD_CFLAGS='-D_THREAD_SAFE -pthread'
1340 PTHREAD_LDFLAGS='-pthread'
1341 if PTHREAD_LDFLAGS == 'error':
1342 if conf.CHECK_FUNC('pthread_attr_init'):
1343 PTHREAD_CFLAGS='-D_REENTRANT'
1344 PTHREAD_LDFLAGS='-lpthread'
1345 # especially for HP-UX, where the CHECK_FUNC macro fails to test for
1346 # pthread_attr_init. On pthread_mutex_lock it works there...
1347 if PTHREAD_LDFLAGS == 'error':
1348 if conf.CHECK_FUNCS_IN('pthread_mutex_lock', 'pthread'):
1349 PTHREAD_CFLAGS='-D_REENTRANT'
1350 PTHREAD_LDFLAGS='-lpthread'
1352 if PTHREAD_CFLAGS != 'error' and PTHREAD_LDFLAGS != 'error':
1353 conf.ADD_CFLAGS(PTHREAD_CFLAGS)
1354 conf.ADD_LDFLAGS(PTHREAD_LDFLAGS)
1355 conf.CHECK_HEADERS('pthread.h')
1356 conf.DEFINE('HAVE_PTHREAD', '1')
1358 if Options.options.with_pthreadpool:
1359 if conf.CONFIG_SET('HAVE_PTHREAD'):
1360 conf.DEFINE('WITH_PTHREADPOOL', '1')
1361 else:
1362 Logs.warn("pthreadpool support cannot be enabled when pthread support was not found")
1363 conf.undefine('WITH_PTHREADPOOL')
1365 if conf.CHECK_HEADERS('gpfs_gpl.h'):
1366 conf.DEFINE('HAVE_GPFS', '1')
1368 # Note that all charset 'modules' must actually be static, due to dependency loop issues
1369 # if we include the module loader in iconv
1371 default_static_modules=TO_LIST('''pdb_smbpasswd pdb_tdbsam pdb_wbc_sam
1372 auth_sam auth_unix auth_winbind auth_wbc
1373 auth_domain auth_builtin vfs_default
1374 nss_info_template idmap_tdb idmap_passdb
1375 idmap_nss''')
1377 default_shared_modules=TO_LIST('''vfs_recycle vfs_audit vfs_extd_audit vfs_full_audit vfs_netatalk
1378 vfs_fake_perms vfs_default_quota vfs_readonly vfs_cap
1379 vfs_expand_msdfs vfs_shadow_copy vfs_shadow_copy2
1380 auth_script vfs_readahead vfs_xattr_tdb vfs_posix_eadb
1381 vfs_streams_xattr vfs_streams_depot vfs_acl_xattr vfs_acl_tdb
1382 vfs_smb_traffic_analyzer vfs_preopen vfs_catia vfs_scannedonly
1383 vfs_crossrename vfs_linux_xfs_sgid
1384 vfs_time_audit idmap_autorid''')
1386 if Options.options.developer:
1387 default_static_modules.extend(TO_LIST('pdb_ads auth_netlogond charset_weird'))
1388 default_shared_modules.extend(TO_LIST('perfcount_test'))
1389 default_shared_modules.extend(TO_LIST('vfs_skel_opaque vfs_skel_transparent vfs_shadow_copy_test'))
1390 default_shared_modules.extend(TO_LIST('auth_skel pdb_test'))
1392 if conf.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'):
1393 default_static_modules.extend(TO_LIST('pdb_samba4 auth_samba4 vfs_dfs_samba4'))
1395 if Options.options.with_acl_support and conf.CONFIG_SET('HAVE_POSIX_ACLS'):
1396 default_static_modules.extend(TO_LIST('vfs_posixacl'))
1398 if conf.CONFIG_SET('HAVE_FREEBSD_SUNACL_H'):
1399 default_shared_modules.extend(TO_LIST('vfs_zfsacl'))
1401 if conf.CONFIG_SET('HAVE_DIRFD_DECL'):
1402 default_shared_modules.extend(TO_LIST('vfs_syncops vfs_dirsort'))
1404 if conf.CONFIG_SET('HAVE_STATFS_F_FSID'):
1405 default_shared_modules.extend(TO_LIST('vfs_fileid'))
1407 if conf.CONFIG_SET('HAVE_AIO') and (conf.CONFIG_SET('HAVE_MSGHDR_MSG_CONTROL') or conf.CONFIG_SET('HAVE_MSGHDR_MSG_ACCTRIGHTS')):
1408 default_shared_modules.extend(TO_LIST('vfs_aio_fork'))
1410 if conf.CONFIG_SET('HAVE_AIO') and Options.options.with_pthreadpool:
1411 default_shared_modules.extend(TO_LIST('vfs_aio_pthread'))
1413 if conf.CONFIG_SET('HAVE_AIO') and conf.CONFIG_SET('HAVE_LINUX_KERNEL_AIO'):
1414 default_shared_modules.extend(TO_LIST('vfs_aio_linux'))
1416 if conf.CONFIG_SET('HAVE_LDAP'):
1417 default_static_modules.extend(TO_LIST('pdb_ldap idmap_ldap'))
1419 if conf.CONFIG_SET('DARWINOS'):
1420 default_static_modules.extend(TO_LIST('charset_macosxfs'))
1422 if conf.CONFIG_SET('HAVE_GPFS'):
1423 default_shared_modules.extend(TO_LIST('vfs_gpfs vfs_gpfs_hsm_notify'))
1425 explicit_shared_modules = TO_LIST(Options.options.shared_modules, delimiter=',')
1426 explicit_static_modules = TO_LIST(Options.options.static_modules, delimiter=',')
1428 final_static_modules = default_static_modules
1429 final_shared_modules = default_shared_modules
1431 for m in explicit_static_modules:
1432 if m in final_shared_modules:
1433 final_shared_modules.remove(m)
1434 final_static_modules.append(m)
1435 for m in explicit_shared_modules:
1436 if m in final_static_modules:
1437 final_static_modules.remove(m)
1438 final_shared_modules.append(m)
1440 conf.env['static_modules'] = final_static_modules
1441 conf.env['shared_modules'] = final_shared_modules
1443 conf.DEFINE('STRING_STATIC_MODULES', ' '.join(final_static_modules), quote=True)
1445 static_list = {}
1446 shared_list = {}
1448 prefixes = ['vfs', 'pdb', 'auth', 'nss_info', 'charset', 'idmap', 'gpext', 'perfcount']
1449 conf.env['MODULE_PREFIXES'] = prefixes
1450 for p in prefixes:
1451 for m in final_static_modules:
1452 if m.find(p) == 0:
1453 if not p in static_list:
1454 static_list[p] = []
1455 static_list[p].append(m)
1456 for m in final_shared_modules:
1457 if m.find(p) == 0:
1458 if not p in shared_list:
1459 shared_list[p] = []
1460 shared_list[p].append(m)
1462 for p in prefixes:
1463 static_env = "%s_STATIC" % p.upper()
1464 shared_env = "%s_SHARED" % p.upper()
1465 conf.env[static_env] = []
1466 conf.env[shared_env] = []
1467 if p in static_list:
1468 decl_list=""
1469 for entry in static_list[p]:
1470 decl_list += "extern NTSTATUS %s_init(void); " % entry
1471 conf.env[static_env].append('%s' % entry)
1472 decl_list = decl_list.rstrip()
1473 conf.DEFINE('static_decl_%s' % p, decl_list)
1474 conf.DEFINE('static_init_%s' % p, '{ %s_init(); }' % '_init(); '.join(static_list[p]))
1475 else:
1476 conf.DEFINE('static_decl_%s' % p, '')
1477 conf.DEFINE('static_init_%s' % p, '{}')
1478 if p in shared_list:
1479 for entry in shared_list[p]:
1480 conf.DEFINE('%s_init' % entry, 'samba_init_module')
1481 conf.env[shared_env].append('%s' % entry)
1483 conf.SAMBA_CONFIG_H('include/config.h')
1485 def ctags(ctx):
1486 "build 'tags' file using ctags"
1487 import Utils
1488 source_root = os.path.dirname(Utils.g_module.root_path)
1489 cmd = 'ctags $(find %s/.. -name "*.[ch]" | grep -v "*_proto\.h")' % source_root
1490 print("Running: %s" % cmd)
1491 os.system(cmd)