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
11 import samba_utils
, samba_version
14 Options
.default_prefix
= '/usr/local/samba'
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)
25 opt
.SAMBA3_ADD_OPTION('winbind')
26 opt
.SAMBA3_ADD_OPTION('ads')
27 opt
.SAMBA3_ADD_OPTION('ldap')
28 opt
.SAMBA3_ADD_OPTION('cups', with_name
="enable", without_name
="disable")
29 opt
.SAMBA3_ADD_OPTION('iprint', with_name
="enable", without_name
="disable")
30 opt
.SAMBA3_ADD_OPTION('pam')
31 opt
.SAMBA3_ADD_OPTION('pam_smbpass')
32 opt
.SAMBA3_ADD_OPTION('quotas')
33 opt
.SAMBA3_ADD_OPTION('sendfile-support')
34 opt
.SAMBA3_ADD_OPTION('utmp')
35 opt
.SAMBA3_ADD_OPTION('pthreadpool', with_name
="enable", without_name
="disable", default
=True)
36 opt
.SAMBA3_ADD_OPTION('avahi', with_name
="enable", without_name
="disable")
37 opt
.SAMBA3_ADD_OPTION('iconv')
38 opt
.SAMBA3_ADD_OPTION('acl-support')
39 opt
.SAMBA3_ADD_OPTION('dnsupdate')
40 opt
.SAMBA3_ADD_OPTION('syslog')
41 opt
.SAMBA3_ADD_OPTION('automount')
42 opt
.SAMBA3_ADD_OPTION('aio-support')
43 opt
.SAMBA3_ADD_OPTION('dmapi', default
=None) # None means autodetection
44 opt
.SAMBA3_ADD_OPTION('fam', default
=None) # None means autodetection
45 opt
.SAMBA3_ADD_OPTION('profiling-data', default
=False)
46 opt
.SAMBA3_ADD_OPTION('libarchive', default
=None)
48 opt
.SAMBA3_ADD_OPTION('cluster-support', default
=None)
50 opt
.SAMBA3_ADD_OPTION('regedit', default
=None)
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)
59 opt
.add_option('--with-libcephfs',
60 help=("Directory under which libcephfs is installed"),
61 action
="store", dest
='libcephfs_dir', default
=None)
63 opt
.SAMBA3_ADD_OPTION('glusterfs', with_name
="enable", without_name
="disable", default
=True)
67 from samba_utils
import TO_LIST
69 default_static_modules
= []
70 default_shared_modules
= []
72 if Options
.options
.developer
:
73 conf
.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD')
74 conf
.env
.developer
= True
76 if sys
.platform
!= 'openbsd5':
77 conf
.ADD_LDFLAGS("-Wl,--export-dynamic", testflags
=True)
79 conf
.CHECK_HEADERS('execinfo.h libexc.h libunwind.h netdb.h')
80 conf
.CHECK_HEADERS('linux/falloc.h')
82 conf
.CHECK_FUNCS('getcwd fchown chmod fchmod mknod')
83 conf
.CHECK_FUNCS('strtol strchr strupr chflags')
84 conf
.CHECK_FUNCS('getrlimit fsync fdatasync setpgid')
85 conf
.CHECK_FUNCS('setsid glob strpbrk crypt16 getauthuid')
86 conf
.CHECK_FUNCS('sigprocmask sigblock sigaction sigset innetgr')
87 conf
.CHECK_FUNCS('initgroups select poll rdchk getgrnam getgrent pathconf')
88 conf
.CHECK_FUNCS('setpriv setgidx setuidx setgroups syscall sysconf')
89 conf
.CHECK_FUNCS('atexit grantpt posix_openpt fallocate posix_fallocate')
90 conf
.CHECK_FUNCS('fseeko setluid')
91 conf
.CHECK_FUNCS('getpwnam', headers
='sys/types.h pwd.h')
92 conf
.CHECK_FUNCS('fdopendir')
93 conf
.CHECK_FUNCS('fstatat')
94 conf
.CHECK_FUNCS('getpwent_r setenv strcasecmp fcvt fcvtl')
95 conf
.CHECK_FUNCS('syslog vsyslog timegm setlocale')
96 conf
.CHECK_FUNCS_IN('nanosleep', 'rt')
97 conf
.CHECK_FUNCS('lutimes futimes utimensat futimens')
98 conf
.CHECK_FUNCS('mlock munlock mlockall munlockall')
99 conf
.CHECK_FUNCS('memalign posix_memalign hstrerror')
100 conf
.CHECK_FUNCS('shmget')
101 conf
.CHECK_FUNCS_IN('shm_open', 'rt', checklibc
=True)
102 #FIXME: for some reason this one still fails
103 conf
.CHECK_FUNCS_IN('yp_get_default_domain', 'nsl')
104 conf
.CHECK_FUNCS_IN('dn_expand _dn_expand __dn_expand', 'resolv')
105 conf
.CHECK_FUNCS_IN('dn_expand', 'inet')
106 conf
.CHECK_DECLS('fdatasync', reverse
=True)
107 conf
.CHECK_DECLS('readahead', reverse
=True, headers
='fcntl.h')
109 if conf
.CONFIG_SET('HAVE_LONG_LONG'):
110 conf
.DEFINE('HAVE_LONGLONG', 1)
112 if conf
.CHECK_CODE('''
113 #if defined(HAVE_UNISTD_H)
116 long ret = splice(0,0,1,0,400,SPLICE_F_MOVE);
120 conf
.CHECK_DECLS('splice', reverse
=True, headers
='fcntl.h')
122 # Check for inotify support
123 conf
.CHECK_HEADERS('sys/inotify.h')
124 if "HAVE_SYS_INOTIFY_H" in conf
.env
:
125 conf
.DEFINE('HAVE_INOTIFY', 1)
127 # Check for kernel change notify support
130 #define F_NOTIFY 1026
133 exit(fcntl(open("/tmp", O_RDONLY), F_NOTIFY, 0) == -1 ? 1 : 0);
134 }''', 'HAVE_KERNEL_CHANGE_NOTIFY', addmain
=False, execute
=True,
135 headers
='fcntl.h signal.h',
136 msg
="Checking for kernel change notify support")
138 # Check for Linux kernel oplocks
140 #include <sys/types.h>
144 #define F_NOTIFY 1026
147 exit(fcntl(open("/tmp", O_RDONLY), F_NOTIFY, 0) == -1 ? 1 : 0);
148 }''', 'HAVE_KERNEL_OPLOCKS_LINUX', addmain
=False, execute
=True,
149 msg
="Checking for Linux kernel oplocks")
151 # Check for IRIX kernel oplock types
152 conf
.CHECK_CODE('oplock_stat_t t; t.os_state = OP_REVOKE; t.os_dev = 1; t.os_ino = 1;',
153 'HAVE_KERNEL_OPLOCKS_IRIX', headers
='fcntl.h',
154 msg
="Checking for IRIX kernel oplock types")
156 # Check for kernel share modes
158 #include <sys/types.h>
161 #include <sys/file.h>
167 exit(flock(open("/dev/null", O_RDWR), LOCK_MAND|LOCK_READ) != 0);
168 }''', 'HAVE_KERNEL_SHARE_MODES', addmain
=False, execute
=True,
169 msg
="Checking for kernel share modes")
174 if Options
.options
.with_fam
is None:
176 elif Options
.options
.with_fam
== True:
179 if check_for_fam
and conf
.CHECK_HEADERS('fam.h'):
180 if conf
.CHECK_FUNCS_IN('FAMOpen2', 'fam'):
182 elif conf
.CHECK_FUNCS_IN('FAMOpen2', 'fam C'):
183 samba_fam_libs
='fam C'
184 conf
.CHECK_TYPE('enum FAMCodes', headers
='fam.h',
185 define
='HAVE_FAM_H_FAMCODES_TYPEDEF',
186 msg
='Checking whether enum FAMCodes is available')
187 conf
.CHECK_FUNCS_IN('FAMNoExists', 'fam')
189 if samba_fam_libs
is not None:
190 conf
.DEFINE('SAMBA_FAM_LIBS', samba_fam_libs
)
192 if Options
.options
.with_fam
== True:
193 conf
.fatal('FAM support requested, but no suitable FAM library found')
195 Logs
.warn('no suitable FAM library found')
197 # check for libarchive (tar command in smbclient)
198 # None means autodetect, True/False means enable/disable
199 conf
.env
['archive_lib'] = ''
200 if Options
.options
.with_libarchive
is not False:
201 libarchive_mandatory
= Options
.options
.with_libarchive
== True
202 Logs
.info("Checking for libarchive existence")
203 if conf
.CHECK_BUNDLED_SYSTEM('libarchive', minversion
='3.1.2'):
204 conf
.env
['archive_lib'] = 'libarchive'
205 elif libarchive_mandatory
:
206 conf
.fatal('libarchive support requested, but no suitable pkgconfig found')
208 # check for DMAPI libs
209 Logs
.info("Checking for DMAPI library existence")
210 conf
.env
['dmapi_lib'] = ''
212 if conf
.CHECK_FUNCS_IN('dm_get_eventlist', 'dm'):
213 samba_dmapi_lib
= 'dm'
215 if conf
.CHECK_FUNCS_IN('dm_get_eventlist', 'jfsdm'):
216 samba_dmapi_lib
= 'jfsdm'
218 if conf
.CHECK_FUNCS_IN('dm_get_eventlist', 'dmapi'):
219 samba_dmapi_lib
= 'dmapi'
221 if conf
.CHECK_FUNCS_IN('dm_get_eventlist', 'xdsm'):
222 samba_dmapi_lib
= 'xdsm'
223 # only bother to test headers and compilation when a candidate
224 # library has been found
225 if Options
.options
.with_dmapi
== True and samba_dmapi_lib
== '':
226 conf
.fatal('DMAPI support requested, but no suitable DMAPI library found')
228 conf
.CHECK_HEADERS('sys/dmi.h xfs/dmapi.h sys/jfsdmapi.h sys/dmapi.h dmapi.h')
230 #include <time.h> /* needed by Tru64 */
231 #include <sys/types.h> /* needed by AIX */
232 #ifdef HAVE_XFS_DMAPI_H
233 #include <xfs/dmapi.h>
234 #elif defined(HAVE_SYS_DMI_H)
236 #elif defined(HAVE_SYS_JFSDMAPI_H)
237 #include <sys/jfsdmapi.h>
238 #elif defined(HAVE_SYS_DMAPI_H)
239 #include <sys/dmapi.h>
240 #elif defined(HAVE_DMAPI_H)
244 /* This link test is designed to fail on IRI 6.4, but should
245 * succeed on Linux, IRIX 6.5 and AIX.
247 int main(int argc, char **argv)
250 dm_eventset_t events;
251 /* This doesn't take an argument on IRIX 6.4. */
252 dm_init_service(&version);
253 /* IRIX 6.4 expects events to be a pointer. */
254 DMEV_ISSET(DM_EVENT_READ, events);
263 msg
='Checking whether DMAPI lib '+samba_dmapi_lib
+' can be used')
265 if conf
.CONFIG_SET('USE_DMAPI'):
266 conf
.env
['dmapi_lib'] = samba_dmapi_lib
268 if Options
.options
.with_dmapi
== True:
269 conf
.fatal('DMAPI support requested but not found');
271 # Check for various members of the stat structure
272 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_blocks', define
='HAVE_STAT_ST_BLOCKS',
273 headers
='sys/stat.h')
274 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_blksize', define
='HAVE_STAT_ST_BLKSIZE',
275 headers
='sys/stat.h')
276 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_flags', define
='HAVE_STAT_ST_FLAGS',
277 headers
='sys/types.h sys/stat.h unistd.h')
279 if "HAVE_BLKCNT_T" in conf
.env
:
281 static int test_array[1 - 2 * !(((long int)(sizeof(blkcnt_t))) <= 4)];''',
283 headers
='replace.h sys/types.h sys/stat.h unistd.h',
284 msg
="Checking whether blkcnt_t is 32 bit")
286 # If sizeof is 4 it can't be 8
287 if "HAVE_BLKCNT_T" in conf
.env
:
288 if not conf
.CONFIG_SET('SIZEOF_BLKCNT_T_4'):
290 static int test_array[1 - 2 * !(((long int)(sizeof(blkcnt_t))) <= 8)];''',
292 headers
='replace.h sys/types.h sys/stat.h unistd.h',
293 msg
="Checking whether blkcnt_t is 64 bit")
295 # Check for POSIX capability support
296 conf
.CHECK_FUNCS_IN('cap_get_proc', 'cap', headers
='sys/capability.h')
298 if "HAVE_SYS_CAPABILITY_H" in conf
.env
:
302 if (!(cap = cap_get_proc())) exit(1);
304 cap_set_flag(cap, CAP_INHERITABLE, 1, vals, CAP_CLEAR);
305 cap_set_proc(cap);''',
306 'HAVE_POSIX_CAPABILITIES', execute
=True, lib
="cap",
307 headers
='sys/capability.h',
308 msg
="Checking whether POSIX capabilities are available")
310 # Check for int16, uint16, int32 and uint32 in rpc/types.h included from
311 # rpc/rpc.h. This is *really* broken but some systems (DEC OSF1) do this.
313 if conf
.CONFIG_SET("HAVE_RPC_RPC_H"):
314 conf
.CHECK_TYPE('int16', headers
='rpc/rpc.h',
315 define
='HAVE_INT16_FROM_RPC_RPC_H',
316 msg
="Checking for int16 typedef included by rpc/rpc.h")
317 conf
.CHECK_CODE('uint16 testvar;', 'HAVE_INT16_FROM_RPC_RPC_H',
318 headers
='sys/types.h rpc/rpc.h',
319 msg
="Checking for uint16 typedef included by rpc/rpc.h")
320 conf
.CHECK_CODE('int32 testvar;', 'HAVE_INT16_FROM_RPC_RPC_H',
321 headers
='sys/types.h rpc/rpc.h',
322 msg
="Checking for int32 typedef included by rpc/rpc.h")
323 conf
.CHECK_CODE('uint32 testvar;', 'HAVE_INT16_FROM_RPC_RPC_H',
324 headers
='sys/types.h rpc/rpc.h',
325 msg
="Checking for uint32 typedef included by rpc/rpc.h")
326 conf
.CHECK_CODE('int i;', 'BROKEN_NISPLUS_INCLUDE_FILES',
327 headers
='sys/types.h sys/acl.h rpcsvc/nis.h',
328 msg
="Checking for broken nisplus include files")
330 # Check if the compiler will optimize out functions
333 this_function_does_not_exist();
336 }''', 'HAVE_COMPILER_WILL_OPTIMIZE_OUT_FNS',
337 msg
="Checking if the compiler will optimize out functions")
339 # Check if the compiler supports the LL suffix on long long integers
341 conf
.CHECK_CODE('long long i = 0x8000000000LL', 'COMPILER_SUPPORTS_LL',
343 msg
="Checking for LL suffix on long long integers")
347 _chdir __chdir chflags chmod _close __close _closedir
348 __closedir crypt16 devnm dirfd
349 DNSServiceRegister _dup __dup _dup2 __dup2 endmntent execl
351 __fchdir fchmod fchown _fcntl __fcntl fcvt fcvtl fdatasync
353 fsetxattr _fstat __fstat fsync
354 futimens futimes __fxstat getauthuid
355 getcwd _getcwd __getcwd getdents __getdents getdirentries
356 getgrent getgrnam getgrouplist getgrset getmntent getpagesize
357 getpwanam getpwent_r getrlimit
358 glob grantpt hstrerror initgroups innetgr
359 llseek _llseek __llseek _lseek __lseek
360 _lstat __lstat lutimes
361 __lxstat memalign mknod mlock mlockall munlock munlockall
362 _open __open _opendir __opendir
363 pathconf poll posix_fallocate
364 posix_memalign pread _pread __pread
365 pwrite _pwrite __pwrite
366 rdchk _read __read _readdir __readdir
368 select setenv setgidx setgroups setlocale setluid
369 setmntent setpgid setpriv setsid setuidx
370 shmget shm_open sigaction sigblock sigprocmask sigset
372 strcasecmp strchr strpbrk strsignal strtol strupr sysconf sysctl sysctlbyname
373 __sys_llseek syslog _telldir __telldir timegm
374 utimensat vsyslog _write __write __xstat
377 conf
.CHECK_SAMBA3_CHARSET() # see build/charset.py
379 # FIXME: these should be tests for features, but the old build system just
381 host_os
= sys
.platform
382 Logs
.info("building on %s" % host_os
)
384 # Python doesn't have case switches... :/
385 # FIXME: original was *linux* | gnu* | k*bsd*-gnu | kopensolaris*-gnu | *qnx*)
386 # the search for .rfind('gnu') covers gnu* and *-gnu is that too broad?
388 conf
.SET_TARGET_TYPE('sunacl', 'EMPTY')
389 if (host_os
.rfind('linux') > -1) or (host_os
.rfind('gnu') > -1) or (host_os
.rfind('qnx') > -1):
390 if host_os
.rfind('linux') > -1:
391 conf
.DEFINE('LINUX', '1')
392 elif host_os
.rfind('qnx') > -1:
393 conf
.DEFINE('QNX', '1')
394 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
395 elif (host_os
.rfind('darwin') > -1):
396 conf
.DEFINE('DARWINOS', 1)
397 conf
.ADD_CFLAGS('-fno-common')
398 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
399 elif (host_os
.rfind('freebsd') > -1):
400 conf
.DEFINE('FREEBSD', 1)
401 if conf
.CHECK_HEADERS('sunacl.h'):
402 conf
.DEFINE('HAVE_FREEBSD_SUNACL_H', '1')
403 conf
.CHECK_FUNCS_IN(['acl'], 'sunacl')
404 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
405 elif (host_os
.rfind('irix') > -1):
406 conf
.DEFINE('IRIX', 1)
407 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
408 elif (host_os
.rfind('aix') > -1):
409 conf
.DEFINE('AIX', 1)
410 conf
.DEFINE('STAT_ST_BLOCKSIZE', 'DEV_BSIZE')
411 elif (host_os
.rfind('hpux') > -1):
412 conf
.DEFINE('HPUX', 1)
413 conf
.DEFINE('STAT_ST_BLOCKSIZE', '8192')
414 elif (host_os
.rfind('osf') > -1):
415 conf
.DEFINE('OSF1', 1)
416 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
418 # FIXME: Add more checks here.
420 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
422 if Options
.options
.with_acl_support
:
423 if (host_os
.rfind('hpux') > -1):
424 Logs
.info('Using HPUX ACLs')
425 conf
.DEFINE('HAVE_HPUX_ACLS',1)
426 conf
.DEFINE('POSIX_ACL_NEEDS_MASK',1)
427 default_static_modules
.extend(TO_LIST('vfs_hpuxacl'))
428 elif (host_os
.rfind('aix') > -1):
429 Logs
.info('Using AIX ACLs')
430 conf
.DEFINE('HAVE_AIX_ACLS',1)
431 default_static_modules
.extend(TO_LIST('vfs_aixacl vfs_aixacl2'))
432 elif (host_os
.rfind('darwin') > -1):
433 Logs
.warn('ACLs on Darwin currently not supported')
434 conf
.fatal("ACL support not available on Darwin/MacOS. "
435 "Use --without-acl-support for building without "
437 "ACL support is required to change permissions "
438 "from Windows clients.")
440 conf
.CHECK_FUNCS_IN(['acl_get_file'], 'acl')
441 if conf
.CHECK_CODE('''
444 acl_entry_t *entry_p;
445 return acl_get_entry(acl, entry_id, entry_p);
448 headers
='sys/types.h sys/acl.h', link
=False,
449 msg
="Checking for POSIX ACL support") :
451 acl_permset_t permset_d;
453 return acl_get_perm_np(permset_d, perm);
455 'HAVE_ACL_GET_PERM_NP',
456 headers
='sys/types.h sys/acl.h', link
=True,
457 msg
="Checking whether acl_get_perm_np() is available")
458 default_static_modules
.extend(TO_LIST('vfs_posixacl'))
459 elif conf
.CHECK_FUNCS_IN(['facl'], 'sec'):
460 Logs
.info('Using solaris or UnixWare ACLs')
461 conf
.DEFINE('HAVE_SOLARIS_UNIXWARE_ACLS',1)
462 default_static_modules
.extend(TO_LIST('vfs_solarisacl'))
463 elif conf
.CHECK_FUNCS_IN(['acl_get_fd'], 'pacl'):
464 Logs
.info('Using Tru64 ACLs')
465 conf
.DEFINE('HAVE_TRU64_ACLS',1)
466 default_static_modules
.extend(TO_LIST('vfs_tru64acl'))
468 conf
.fatal("ACL support not found. Try installing libacl1-dev "
470 "Otherwise, use --without-acl-support to build "
471 "without ACL support. "
472 "ACL support is required to change permissions from "
475 if conf
.CHECK_FUNCS('dirfd'):
476 conf
.DEFINE('HAVE_DIRFD_DECL', 1)
478 conf
.CHECK_CODE('struct statfs fsd; fsid_t fsid = fsd.f_fsid; return statfs(".", &fsd);',
479 'HAVE_STATFS_F_FSID',
480 msg
="vfs_fileid checking for statfs() and struct statfs.f_fsid",
481 headers
='sys/types.h sys/statfs.h',
484 if conf
.CONFIG_SET('HAVE_FALLOCATE'):
486 int ret = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 10);''',
487 'HAVE_LINUX_FALLOCATE',
488 msg
="Checking whether the Linux 'fallocate' function is available",
489 headers
='unistd.h sys/types.h fcntl.h linux/falloc.h')
491 ssize_t err = readahead(0,0,0x80000);''',
492 'HAVE_LINUX_READAHEAD',
493 msg
="Checking whether Linux readahead is available",
494 headers
='unistd.h fcntl.h')
495 conf
.CHECK_DECLS('readahead', headers
='fcntl.h', always
=True)
497 conf
.CHECK_CODE('int fd = openat(AT_FDCWD, ".", O_RDONLY);',
499 msg
='Checking for openat',
502 if Options
.options
.with_aio_support
:
503 conf
.CHECK_FUNCS_IN('aio_read', 'aio')
504 conf
.CHECK_FUNCS_IN('aio_read', 'rt')
505 conf
.CHECK_CODE('struct aiocb a; return aio_read(&a);',
507 msg
='Checking for asynchronous io support',
508 headers
='sys/types.h aio.h',
510 if conf
.CONFIG_SET('HAVE_AIO'):
511 conf
.CHECK_CODE('struct aiocb a; return aio_read(&a);', 'HAVE_AIO_READ', msg
='Checking for aio_read', headers
='aio.h', lib
='aio rt')
512 conf
.CHECK_CODE('struct aiocb a; return aio_write(&a);', 'HAVE_AIO_WRITE', msg
='Checking for aio_write', headers
='aio.h', lib
='aio rt')
513 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')
514 conf
.CHECK_CODE('struct aiocb a; return aio_return(&a);', 'HAVE_AIO_RETURN', msg
='Checking for aio_return', headers
='aio.h', lib
='aio rt')
515 conf
.CHECK_CODE('struct aiocb a; return aio_error(&a);', 'HAVE_AIO_ERROR', msg
='Checking for aio_error', headers
='aio.h', lib
='aio rt')
516 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')
517 conf
.CHECK_CODE('const struct aiocb * const a[1]; struct timespec t; return aio_suspend(&a, 1, &t);', 'HAVE_AIO_SUSPEND', msg
='Checking for aio_suspend', headers
='aio.h', lib
='aio rt')
518 if not conf
.CONFIG_SET('HAVE_AIO'):
519 conf
.DEFINE('HAVE_NO_AIO', '1')
521 conf
.DEFINE('HAVE_NO_AIO', '1')
523 if host_os
.rfind('linux') > -1:
524 conf
.CHECK_FUNCS_IN('io_submit', 'aio')
526 struct io_event ioev;
532 fd = eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
533 io_queue_init(128,&ctx);
534 io_prep_pwrite(ioc, 1, buf, 1, 0);
535 io_prep_pread(ioc, 1, buf, 1, 0);
536 io_set_eventfd(ioc, fd);
537 io_set_callback(ioc, (io_callback_t)(0));
538 io_submit(ctx, 1, &ioc);
539 io_getevents(ctx, 1, 1, &ioev, &ts);
541 'HAVE_LINUX_KERNEL_AIO',
542 msg
='Checking for linux kernel asynchronous io support',
543 headers
='unistd.h stdlib.h sys/types.h fcntl.h sys/eventfd.h libaio.h',
550 char control[CMSG_SPACE(sizeof(int))];
552 msg.msg_control = control_un.control;
553 msg.msg_controllen = sizeof(control_un.control);
555 'HAVE_MSGHDR_MSG_CONTROL',
556 msg
='Checking if we can use msg_control for passing file descriptors',
557 headers
='sys/types.h stdlib.h stddef.h sys/socket.h sys/un.h')
561 msg.msg_acctrights = (caddr_t) &fd;
562 msg.msg_acctrightslen = sizeof(fd);
564 'HAVE_MSGHDR_MSG_ACCTRIGHTS',
565 msg
='Checking if we can use msg_acctrights for passing file descriptors',
566 headers
='sys/types.h stdlib.h stddef.h sys/socket.h sys/un.h')
568 if Options
.options
.with_winbind
:
569 conf
.env
.build_winbind
= True
570 conf
.DEFINE('WITH_WINBIND', '1')
572 conf
.find_program('awk', var
='AWK')
573 conf
.find_program('perl', var
='PERL')
575 conf
.CHECK_HEADERS('asm/types.h')
577 conf
.CHECK_CODE('dev_t dev; int i = major(dev); return 0', "HAVE_DEVICE_MAJOR_FN",
578 headers
='unistd.h sys/types.h',
579 msg
="Checking for major macro")
581 conf
.CHECK_CODE('dev_t dev; int i = minor(dev); return 0', "HAVE_DEVICE_MINOR_FN",
582 headers
='unistd.h sys/types.h',
583 msg
="Checking for minor macro")
585 conf
.CHECK_STRUCTURE_MEMBER('struct dirent', 'd_off',
586 headers
='unistd.h sys/types.h dirent.h',
587 define
='HAVE_DIRENT_D_OFF')
589 conf
.CHECK_FUNCS('setnetgrent getnetgrent endnetgrent')
590 if conf
.CHECK_CFLAGS('-Werror-implicit-function-declaration'):
591 netgrent_cflags
= '-Werror-implicit-function-declaration'
594 conf
.CHECK_CODE('setnetgrent("foo")', 'HAVE_SETNETGRENT_PROTOTYPE',
595 msg
="Checking for setnetgrent prototype",
596 headers
='netdb.h netgroup.h',
597 cflags
=netgrent_cflags
)
598 conf
.CHECK_CODE('getnetgrent', 'HAVE_GETNETGRENT_PROTOTYPE',
599 msg
="Checking for getnetgrent prototype",
600 headers
='netdb.h netgroup.h',
601 cflags
=netgrent_cflags
)
602 conf
.CHECK_CODE('endnetgrent', 'HAVE_ENDNETGRENT_PROTOTYPE',
603 msg
="Checking for endnetgrent prototype",
604 headers
='netdb.h netgroup.h',
605 cflags
=netgrent_cflags
)
609 if Options
.options
.with_cups
:
610 conf
.find_program('cups-config', var
='CUPS_CONFIG')
611 if conf
.env
.CUPS_CONFIG
:
612 # we would normally use --libs here, but cups-config incorrectly adds
613 # gssapi_krb5 and other libraries to its --libs output. That breaks the use
614 # of an in-tree heimdal kerberos
615 conf
.check_cfg(path
=conf
.env
.CUPS_CONFIG
, args
="--cflags --ldflags",
616 package
="", uselib_store
="CUPS")
617 conf
.CHECK_HEADERS('cups/cups.h cups/language.h', lib
='cups')
618 conf
.CHECK_FUNCS_IN('httpConnect httpConnectEncrypt', 'cups')
619 if conf
.CONFIG_SET('HAVE_CUPS_CUPS_H') and conf
.CONFIG_SET('HAVE_CUPS_LANGUAGE_H'):
620 conf
.DEFINE('HAVE_CUPS', '1')
622 conf
.undefine('HAVE_CUPS')
623 conf
.SET_TARGET_TYPE('cups', 'EMPTY')
625 # define an empty subsystem for cups, to allow it to be used as an empty dependency
626 conf
.SET_TARGET_TYPE('cups', 'EMPTY')
628 if Options
.options
.with_iprint
:
629 if conf
.CONFIG_SET('HAVE_CUPS'):
630 conf
.DEFINE('HAVE_IPRINT', '1')
632 Logs
.warn("--enable-iprint=yes but cups support not sufficient")
633 if Options
.options
.with_syslog
:
634 conf
.DEFINE('WITH_SYSLOG', '1')
635 if Options
.options
.with_automount
:
636 conf
.DEFINE('WITH_AUTOMOUNT', '1')
639 if Options
.options
.with_ldap
:
640 conf
.CHECK_HEADERS('ldap.h lber.h ldap_pvt.h')
641 conf
.CHECK_TYPE('ber_tag_t', 'unsigned int', headers
='ldap.h lber.h')
642 conf
.CHECK_FUNCS_IN('ber_scanf ber_sockbuf_add_io', 'lber')
643 conf
.CHECK_VARIABLE('LDAP_OPT_SOCKBUF', headers
='ldap.h')
645 # if we LBER_OPT_LOG_PRINT_FN we can intercept ldap logging and print it out
647 conf
.CHECK_VARIABLE('LBER_OPT_LOG_PRINT_FN',
648 define
='HAVE_LBER_LOG_PRINT_FN', headers
='lber.h')
650 conf
.CHECK_FUNCS_IN('ldap_init ldap_init_fd ldap_initialize ldap_set_rebind_proc', 'ldap')
651 conf
.CHECK_FUNCS_IN('ldap_add_result_entry', 'ldap')
653 # Check if ldap_set_rebind_proc() takes three arguments
654 if conf
.CHECK_CODE('ldap_set_rebind_proc(0, 0, 0)',
655 'LDAP_SET_REBIND_PROC_ARGS',
656 msg
="Checking whether ldap_set_rebind_proc takes 3 arguments",
657 headers
='ldap.h lber.h', link
=False):
658 conf
.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '3')
660 conf
.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '2')
662 # last but not least, if ldap_init() exists, we want to use ldap
663 if conf
.CONFIG_SET('HAVE_LDAP_INIT') and conf
.CONFIG_SET('HAVE_LDAP_H'):
664 conf
.DEFINE('HAVE_LDAP', '1')
665 conf
.DEFINE('LDAP_DEPRECATED', '1')
666 conf
.env
['HAVE_LDAP'] = '1'
667 # if ber_sockbuf_add_io() and LDAP_OPT_SOCKBUF are available, we can add
668 # SASL wrapping hooks
669 if conf
.CONFIG_SET('HAVE_BER_SOCKBUF_ADD_IO') and \
670 conf
.CONFIG_SET('HAVE_LDAP_OPT_SOCKBUF'):
671 conf
.DEFINE('HAVE_LDAP_SASL_WRAPPING', '1')
673 conf
.fatal("LDAP support not found. "
674 "Try installing libldap2-dev or openldap-devel. "
675 "Otherwise, use --without-ldap to build without "
677 "LDAP support is required for the LDAP passdb backend, "
678 "LDAP idmap backends and ADS. "
679 "ADS support improves communication with "
680 "Active Directory domain controllers.")
682 conf
.SET_TARGET_TYPE('ldap', 'EMPTY')
683 conf
.SET_TARGET_TYPE('lber', 'EMPTY')
685 if Options
.options
.with_ads
== False:
693 if not conf
.CONFIG_SET('HAVE_ENCTYPE_ARCFOUR_HMAC_MD5') and \
694 not conf
.CONFIG_SET('HAVE_ENCTYPE_ARCFOUR_HMAC'):
695 Logs
.warn("arcfour-hmac-md5 encryption type not found in -lkrb5")
697 if not conf
.CONFIG_SET('HAVE_KRB5_MK_REQ_EXTENDED'):
698 Logs
.warn("krb5_mk_req_extended not found in -lkrb5")
700 if not conf
.CONFIG_SET('HAVE_KRB5_GET_HOST_REALM'):
701 Logs
.warn("krb5_get_host_realm not found in -lkrb5")
703 if not conf
.CONFIG_SET('HAVE_KRB5_FREE_HOST_REALM'):
704 Logs
.warn("krb5_free_host_realm not found in -lkrb5")
706 if not conf
.CONFIG_SET('HAVE_KRB5_FWD_TGT_CREDS'):
707 Logs
.warn("krb5_fwd_tgt_creds found in -lkrb5")
709 if not conf
.CONFIG_SET('HAVE_KRB5_GET_INIT_CREDS_OPT_ALLOC'):
710 Logs
.warn("krb5_get_init_creds_opt_alloc not found in -lkrb5")
712 if not conf
.CONFIG_SET('KRB5_CREDS_OPT_FREE_REQUIRES_CONTEXT'):
713 Logs
.warn("krb5_get_init_creds_opt_free was not found or was too old in -lkrb5")
715 if not conf
.CONFIG_SET('HAVE_KRB5_GET_RENEWED_CREDS'):
716 Logs
.warn("krb5_get_renewed_creds not found in -lkrb5")
718 if not conf
.CONFIG_SET('HAVE_KRB5_PRINCIPAL_COMPARE_ANY_REALM'):
719 Logs
.warn("krb5_principal_compare_any_realm not found in -lkrb5")
721 if not conf
.CONFIG_SET('HAVE_KRB5_C_STRING_TO_KEY') and \
722 not conf
.CONFIG_SET('HAVE_KRB5_STRING_TO_KEY_SALT'):
723 Logs
.warn("krb5_c_string_to_key not found in -lkrb5")
725 if not conf
.CONFIG_SET('HAVE_KRB5_PRINCIPAL2SALT') and \
726 not conf
.CONFIG_SET('HAVE_KRB5_GET_PW_SALT'):
727 Logs
.warn("no CREATE_KEY_FUNCTIONS detected")
729 if not conf
.CONFIG_SET('HAVE_KRB5_GET_PERMITTED_ENCTYPES') and \
730 not conf
.CONFIG_SET('HAVE_KRB5_GET_DEFAULT_IN_TKT_ETYPES'):
731 Logs
.warn("no GET_ENCTYPES_FUNCTIONS detected")
733 if not conf
.CONFIG_SET('HAVE_KRB5_KT_FREE_ENTRY') and \
734 not conf
.CONFIG_SET('HAVE_KRB5_FREE_KEYTAB_ENTRY_CONTENTS'):
735 Logs
.warn("no KT_FREE_FUNCTION detected")
737 if not conf
.CONFIG_SET('HAVE_KRB5_C_VERIFY_CHECKSUM'):
738 Logs
.warn("krb5_c_verify_checksum_compare not found in -lkrb5")
741 # We don't actually use
742 # gsskrb5_extract_authz_data_from_sec_context, but it is a
743 # clue that this Heimdal, which does the PAC processing we
744 # need on the standard gss_inquire_sec_context_by_oid
745 if not conf
.CONFIG_SET('HAVE_GSS_GET_NAME_ATTRIBUTE') and \
746 not (conf
.CONFIG_SET('HAVE_GSSKRB5_EXTRACT_AUTHZ_DATA_FROM_SEC_CONTEXT') and \
747 conf
.CONFIG_SET('HAVE_GSS_INQUIRE_SEC_CONTEXT_BY_OID')):
748 Logs
.warn("need either gss_get_name_attribute or gsskrb5_extract_authz_data_from_sec_context and gss_inquire_sec_context_by_oid in -lgssapi for PAC support")
751 if not conf
.CONFIG_SET('HAVE_GSS_KRB5_EXPORT_LUCID_SEC_CONTEXT'):
752 Logs
.warn("need gss_krb5_export_lucid_sec_context for SPNEGO and gss_wrap support")
756 conf
.DEFINE('HAVE_KRB5', '1')
757 conf
.env
['HAVE_KRB5'] = '1'
759 conf
.undefine('HAVE_KRB5_H')
760 conf
.undefine('HAVE_GSSAPI_H')
761 conf
.undefine('HAVE_GSSAPI_GSSAPI_GENERIC_H')
762 conf
.undefine('HAVE_GSSAPI_GSSAPI_H')
765 if not conf
.CONFIG_SET('HAVE_LDAP'):
770 conf
.DEFINE('WITH_ADS', '1')
771 conf
.env
['HAVE_ADS'] = '1'
772 Logs
.info("Building with Active Directory support.")
773 elif Options
.options
.with_ads
== False:
774 Logs
.info("Building without Active Directory support (--without-ads).")
777 Logs
.warn("Active Directory support not available: krb5 libs don't have all required features")
779 Logs
.warn("Active Directory support not available: LDAP support is not available.")
780 if Options
.options
.with_ads
:
781 conf
.fatal("Active Directory support not found. Use --without-ads "
782 "for building without Active Directory support. "
783 "ADS support improves communication with "
784 "Active Directory domain controllers.")
786 # this is the auto-mode case
787 Logs
.warn("Building without Active Directory support.")
790 if Options
.options
.with_utmp
:
791 conf
.env
.with_utmp
= True
792 if not conf
.CHECK_HEADERS('utmp.h'): conf
.env
.with_utmp
= False
793 conf
.CHECK_FUNCS('pututline pututxline updwtmp updwtmpx getutmpx getutxent')
794 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_name', headers
='utmp.h',
795 define
='HAVE_UT_UT_NAME')
796 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_user', headers
='utmp.h',
797 define
='HAVE_UT_UT_USER')
798 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_id', headers
='utmp.h',
799 define
='HAVE_UT_UT_ID')
800 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_host', headers
='utmp.h',
801 define
='HAVE_UT_UT_HOST')
802 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_time', headers
='utmp.h',
803 define
='HAVE_UT_UT_TIME')
804 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_tv', headers
='utmp.h',
805 define
='HAVE_UT_UT_TV')
806 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_type', headers
='utmp.h',
807 define
='HAVE_UT_UT_TYPE')
808 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_pid', headers
='utmp.h',
809 define
='HAVE_UT_UT_PID')
810 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_exit.e_exit', headers
='utmp.h',
811 define
='HAVE_UT_UT_EXIT')
812 conf
.CHECK_STRUCTURE_MEMBER('struct utmpx', 'ut_syslen', headers
='utmpx.h',
813 define
='HAVE_UX_UT_SYSLEN')
814 conf
.CHECK_CODE('struct utmp utarg; struct utmp *utreturn; utreturn = pututline(&utarg);',
815 'PUTUTLINE_RETURNS_UTMP', headers
='utmp.h',
816 msg
="Checking whether pututline returns pointer")
817 conf
.CHECK_SIZEOF(['((struct utmp *)NULL)->ut_line'], headers
='utmp.h',
818 define
='SIZEOF_UTMP_UT_LINE', critical
=False)
819 if not conf
.CONFIG_SET('SIZEOF_UTMP_UT_LINE'):
820 conf
.env
.with_utmp
= False
821 elif int(conf
.env
.SIZEOF_UTMP_UT_LINE
) < 15:
822 conf
.env
.with_utmp
= False
823 if conf
.env
.with_utmp
:
824 conf
.DEFINE('WITH_UTMP', 1)
826 Logs
.warn("--with-utmp but utmp support not sufficient")
828 if Options
.options
.with_avahi
:
829 conf
.env
.with_avahi
= True
830 if not conf
.CHECK_HEADERS('avahi-common/watch.h avahi-client/client.h'): conf
.env
.with_avahi
= False
831 if not conf
.CHECK_FUNCS_IN('avahi_client_new', 'avahi-client'): conf
.env
.with_avahi
= False
832 if not conf
.CHECK_FUNCS_IN('avahi_strerror', 'avahi-common'): conf
.env
.with_avahi
= False
833 if conf
.env
.with_avahi
:
834 conf
.DEFINE('WITH_AVAHI_SUPPORT', 1)
836 conf
.SET_TARGET_TYPE('avahi-common', 'EMPTY')
837 conf
.SET_TARGET_TYPE('avahi-client', 'EMPTY')
839 if Options
.options
.with_iconv
:
840 conf
.env
.with_iconv
= True
841 if not conf
.CHECK_FUNCS_IN('iconv_open', 'iconv', headers
='iconv.h'):
842 conf
.env
.with_iconv
= False
843 if conf
.env
.with_iconv
:
844 conf
.DEFINE('HAVE_ICONV', 1)
846 if Options
.options
.with_pam
:
848 conf
.CHECK_HEADERS('security/pam_appl.h pam/pam_appl.h')
849 if not conf
.CONFIG_SET('HAVE_SECURITY_PAM_APPL_H') and not conf
.CONFIG_SET('HAVE_PAM_PAM_APPL_H'):
850 Logs
.warn("--with-pam=yes but pam_appl.h not found")
852 conf
.CHECK_FUNCS_IN('pam_get_data', 'pam')
853 conf
.CHECK_HEADERS('security/pam_modules.h pam/pam_modules.h')
854 if not conf
.CONFIG_SET('HAVE_SECURITY_PAM_MODULES_H') and not conf
.CONFIG_SET('HAVE_PAM_PAM_MODULES_H'):
855 Logs
.warn("--with-pam=yes but pam_modules.h not found")
857 conf
.CHECK_HEADERS('security/pam_ext.h security/_pam_macros.h')
858 conf
.CHECK_HEADERS('pam/pam_ext.h pam/_pam_macros.h')
859 conf
.CHECK_FUNCS_IN('pam_vsyslog', 'pam')
861 #if defined(HAVE_SECURITY_PAM_APPL_H)
862 #include <security/pam_appl.h>
863 #elif defined(HAVE_PAM_PAM_APPL_H)
864 #include <pam/pam_appl.h>
866 pam_set_item(0, PAM_RHOST, 0);
870 msg
="Checking whether PAM_RHOST is available");
872 #if defined(HAVE_SECURITY_PAM_APPL_H)
873 #include <security/pam_appl.h>
874 #elif defined(HAVE_PAM_PAM_APPL_H)
875 #include <pam/pam_appl.h>
877 pam_set_item(0, PAM_TTY, 0);
881 msg
="Checking whether PAM_TTY is available");
883 #if (!defined(LINUX))
885 #define PAM_EXTERN extern
886 #if defined(HAVE_SECURITY_PAM_APPL_H)
887 #include <security/pam_appl.h>
888 #elif defined(HAVE_PAM_PAM_APPL_H)
889 #include <pam/pam_appl.h>
894 #if defined(HAVE_SECURITY_PAM_MODULES_H)
895 #include <security/pam_modules.h>
896 #elif defined(HAVE_PAM_PAM_MODULES_H)
897 #include <pam/pam_modules.h>
900 #if defined(HAVE_SECURITY__PAM_MACROS_H)
901 #include <security/_pam_macros.h>
902 #elif defined(HAVE_PAM__PAM_MACROS_H)
903 #include <pam/_pam_macros.h>
906 #ifdef HAVE_SECURITY_PAM_EXT_H
907 #include <security/pam_ext.h>
910 int i; i = PAM_RADIO_TYPE;
912 'HAVE_PAM_RADIO_TYPE',
914 msg
="Checking whether PAM_RADIO_TYPE is available");
916 conf
.DEFINE('WITH_PAM', 1)
917 conf
.DEFINE('WITH_PAM_MODULES', 1)
919 if Options
.options
.with_pam_smbpass
:
920 conf
.env
.with_pam_smbpass
= True
925 # Ensure we select the correct set of system calls on Linux.
927 if (host_os
.rfind('linux') > -1):
929 #if defined(HAVE_UNISTD_H)
934 #include <sys/types.h>
937 #ifdef HAVE_SYS_PRIV_H
938 #include <sys/priv.h>
944 #if defined(HAVE_SYSCALL_H)
948 #if defined(HAVE_SYS_SYSCALL_H)
949 #include <sys/syscall.h>
952 syscall(SYS_setresuid32, -1, -1, -1);
953 syscall(SYS_setresgid32, -1, -1, -1);
954 syscall(SYS_setreuid32, -1, -1);
955 syscall(SYS_setregid32, -1, -1);
956 syscall(SYS_setuid32, -1);
957 syscall(SYS_setgid32, -1);
958 syscall(SYS_setgroups32, 0, NULL);
960 'USE_LINUX_32BIT_SYSCALLS',
961 msg
="Checking whether Linux should use 32-bit credential calls");
963 if (conf
.CONFIG_SET('USE_LINUX_32BIT_SYSCALLS')):
964 seteuid
= conf
.CHECK_CODE('''
965 #define AUTOCONF_TEST 1
966 #define USE_LINUX_THREAD_CREDENTIALS 1
967 #define USE_LINUX_32BIT_SYSCALLS 1
968 #include "../lib/util/setid.c"
969 #include "./lib/util_sec.c"
971 'USE_LINUX_THREAD_CREDENTIALS',
974 msg
="Checking whether we can use Linux thread-specific credentials with 32-bit system calls")
976 seteuid
= conf
.CHECK_CODE('''
977 #define AUTOCONF_TEST 1
978 #define USE_LINUX_THREAD_CREDENTIALS 1
979 #include "../lib/util/setid.c"
980 #include "./lib/util_sec.c"
982 'USE_LINUX_THREAD_CREDENTIALS',
985 msg
="Checking whether we can use Linux thread-specific credentials")
987 seteuid
= conf
.CHECK_CODE('''
988 #define AUTOCONF_TEST 1
989 #define USE_SETREUID 1
990 #include "../lib/util/setid.c"
991 #include "./lib/util_sec.c"
996 msg
="Checking whether setreuid is available")
998 seteuid
= conf
.CHECK_CODE('''
999 #define AUTOCONF_TEST 1
1000 #define USE_SETRESUID 1
1001 #include "../lib/util/setid.c"
1002 #include "./lib/util_sec.c"
1007 msg
="Checking whether setresuid is available")
1009 seteuid
= conf
.CHECK_CODE('''
1010 #define AUTOCONF_TEST 1
1011 #define USE_SETEUID 1
1012 #include "../lib/util/setid.c"
1013 #include "./lib/util_sec.c"
1018 msg
="Checking whether seteuid is available")
1020 seteuid
= conf
.CHECK_CODE('''
1021 #define AUTOCONF_TEST 1
1022 #define USE_SETUIDX 1
1023 #include "../lib/util/setid.c"
1024 #include "./lib/util_sec.c"
1030 msg
="Checking whether setuidx is available")
1031 if Options
.options
.with_dnsupdate
:
1032 if not conf
.CONFIG_SET('HAVE_KRB5'):
1033 Logs
.warn("--with-dnsupdate=yes but gssapi support not sufficient")
1035 conf
.DEFINE('WITH_DNS_UPDATES', 1)
1036 conf
.CHECK_HEADERS('valgrind.h valgrind/valgrind.h valgrind/memcheck.h')
1037 if Options
.options
.developer
:
1038 if conf
.CONFIG_SET('HAVE_VALGRIND_H') or conf
.CONFIG_SET('HAVE_VALGRIND_VALGRIND_H'):
1039 conf
.DEFINE('VALGRIND', '1')
1041 if conf
.CHECK_CODE('''
1042 #include <bits/sockaddr.h>
1043 #include <linux/netlink.h>
1045 'HAVE_LINUX_NETLINK_H',
1046 msg
="Checking whether Linux netlink is available"):
1049 #include <bits/sockaddr.h>
1050 #include <linux/netlink.h>
1051 #include <linux/rtnetlink.h>
1053 'HAVE_LINUX_RTNETLINK_H',
1054 msg
='Checking whether Linux rtnetlink is available')
1057 #include "../tests/fcntl_lock.c"
1062 msg
='Checking whether fcntl locking is available')
1064 # glibc up to 2.3.6 had dangerously broken posix_fallocate(). DON'T USE IT.
1065 if not conf
.CHECK_CODE('''
1066 #define _XOPEN_SOURCE 600
1068 #if defined(__GLIBC__) && ((__GLIBC__ < 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 4))
1069 #error probably broken posix_fallocate
1072 '_HAVE_UNBROKEN_POSIX_FALLOCATE',
1073 msg
='Checking for broken posix_fallocate'):
1074 conf
.DEFINE('HAVE_BROKEN_POSIX_FALLOCATE', '1')
1077 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtim.tv_nsec',
1078 define
='HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC') # Linux, Solaris
1079 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtimensec',
1080 define
='HAVE_STRUCT_STAT_ST_MTIMENSEC') # BSD, if defined _POSIX_SOURCE
1081 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtimespec.tv_nsec',
1082 define
='HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC') # BSD, if not defined _POSIX_SOURCE
1083 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtime_n',
1084 define
='HAVE_STRUCT_STAT_ST_MTIME_N') # AIX
1085 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_umtime',
1086 define
='HAVE_STRUCT_STAT_ST_UMTIME') # Tru64
1087 if conf
.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC') or \
1088 conf
.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIMENSEC') or \
1089 conf
.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC') or \
1090 conf
.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIME_N') or \
1091 conf
.CONFIG_SET('HAVE_STRUCT_STAT_ST_UMTIME'):
1092 conf
.DEFINE('HAVE_STAT_HIRES_TIMESTAMPS', '1')
1094 # recent FreeBSD, NetBSD have creation timestamps called birthtime:
1095 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtime',
1096 define
='HAVE_STRUCT_STAT_ST_BIRTHTIME')
1097 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtimespec.tv_nsec',
1098 define
='HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC')
1099 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtimensec',
1100 define
='HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC')
1103 ssize_t err = posix_fadvise(0,0,0x80000,POSIX_FADV_WILLNEED);
1105 'HAVE_POSIX_FADVISE',
1106 msg
='Checking whether posix_fadvise is available',
1107 headers
='unistd.h fcntl.h')
1109 for v
in ['_SC_NGROUPS_MAX', '_SC_NPROC_ONLN', '_SC_NPROCESSORS_ONLN', '_SC_PAGESIZE' ]:
1112 return sysconf(%s) == -1 ? 1 : 0;
1115 msg
='Checking whether sysconf(%s) is available' % v
)
1118 #include <sys/syscall.h>
1120 syscall(SYS_initgroups, 16, NULL, NULL, 0);
1122 'HAVE_DARWIN_INITGROUPS',
1123 msg
='Checking whether to use the Darwin-specific initgroups system call')
1125 conf
.CHECK_CODE('''struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));''',
1127 headers
='sys/types.h utime.h',
1128 msg
='Checking whether struct utimbuf is available')
1130 if conf
.CHECK_CODE('''struct sigevent s;''',
1131 'HAVE_STRUCT_SIGEVENT',
1132 headers
='sys/types.h stdlib.h stddef.h signal.h',
1133 msg
='Checking whether we have the struct sigevent'):
1134 conf
.CHECK_STRUCTURE_MEMBER('struct sigevent', 'sigev_value.sival_ptr',
1135 define
='HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR',
1136 headers
='signal.h');
1137 conf
.CHECK_STRUCTURE_MEMBER('struct sigevent', 'sigev_value.sigval_ptr',
1138 define
='HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIGVAL_PTR',
1139 headers
='signal.h');
1141 if os
.path
.exists('/proc/sys/kernel/core_pattern'):
1142 conf
.DEFINE('HAVE_SYS_KERNEL_PROC_CORE_PATTERN', '1')
1144 if conf
.CHECK_CODE('''
1148 if (sizeof(time_t) == 8) {
1149 time_t max_time = 0x7fffffffffffffffll;
1150 tm = gmtime(&max_time);
1151 /* This should fail with 32-bit tm_year. */
1153 /* Max time_t that works with 32-bit int tm_year in struct tm. */
1154 max_time = 67768036191676799ll;
1155 tm = gmtime(&max_time);
1166 msg
="Checking for the maximum value of the 'time_t' type"):
1167 conf
.DEFINE('TIME_T_MAX', '67768036191676799ll')
1170 #if defined(HAVE_UNISTD_H)
1173 #include <sys/types.h>
1174 main() { dev_t dev = makedev(1,2); return 0; }
1178 msg
='Checking whether the macro for makedev is available')
1185 void exit_on_core(int ignored) {
1191 signal(SIGSEGV, exit_on_core);
1192 newpath = realpath("/tmp", NULL);
1193 exit((newpath != NULL) ? 0 : 1);
1196 'REALPATH_TAKES_NULL',
1199 msg
='Checking whether the realpath function allows a NULL argument')
1201 conf
.CHECK_CODE('''#include "../tests/ftruncate.c"''',
1202 'HAVE_FTRUNCATE_EXTEND',
1203 msg
='Checking for ftruncate extend',
1207 if Options
.options
.with_sendfile_support
:
1208 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):
1213 ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
1216 headers
='sys/sendfile.h',
1217 msg
='Checking for linux sendfile support')
1219 if conf
.CONFIG_SET('_HAVE_SENDFILE'):
1220 conf
.DEFINE('HAVE_SENDFILE', '1')
1221 conf
.DEFINE('LINUX_SENDFILE_API', '1')
1222 conf
.DEFINE('WITH_SENDFILE', '1')
1223 elif (host_os
.rfind('freebsd') > -1) or (host_os
.rfind('dragonfly') > -1):
1225 #include <sys/types.h>
1227 #include <sys/socket.h>
1228 #include <sys/uio.h>
1229 int fromfd, tofd, ret, total=0;
1230 off_t offset, nwritten;
1233 hdr.headers = &hdtrl;
1235 hdr.trailers = NULL;
1237 hdtrl.iov_base = NULL;
1239 ret = sendfile(fromfd, tofd, offset, total, &hdr, &nwritten, 0)
1242 msg
='Checking for freebsd sendfile support')
1243 if conf
.CONFIG_SET('_HAVE_SENDFILE'):
1244 conf
.DEFINE('HAVE_SENDFILE', '1')
1245 conf
.DEFINE('FREEBSD_SENDFILE_API', '1')
1246 conf
.DEFINE('WITH_SENDFILE', '1')
1247 elif (host_os
.rfind('darwin') > -1):
1249 #include <sys/types.h>
1250 #include <sys/socket.h>
1251 #include <sys/uio.h>
1252 int fromfd, tofd, ret;
1253 off_t offset, nwritten;
1256 hdr.headers = &hdtrl;
1258 hdr.trailers = (void *)0;
1260 hdtrl.iov_base = (void *)0;
1262 ret = sendfile(fromfd, tofd, offset, &nwritten, &hdr, 0);
1265 msg
='Checking for darwin sendfile support')
1266 if conf
.CONFIG_SET('_HAVE_SENDFILE'):
1267 conf
.DEFINE('HAVE_SENDFILE', '1')
1268 conf
.DEFINE('DARWIN_SENDFILE_API', '1')
1269 conf
.DEFINE('WITH_SENDFILE', '1')
1270 elif (host_os
.rfind('hpux') > -1) or (host_os
.rfind('osf') > -1):
1272 #include <sys/socket.h>
1273 #include <sys/uio.h>
1276 struct iovec hdtrl[2];
1279 hdtrl[0].iov_base = 0;
1280 hdtrl[0].iov_len = 0;
1281 nwritten = sendfile(tofd, fromfd, offset, total, &hdtrl[0], 0);
1284 msg
='Checking for osf/hpux sendfile support')
1285 if conf
.CONFIG_SET('_HAVE_SENDFILE'):
1286 conf
.DEFINE('HAVE_SENDFILE', '1')
1287 conf
.DEFINE('HPUX_SENDFILE_API', '1')
1288 conf
.DEFINE('WITH_SENDFILE', '1')
1289 elif (host_os
.rfind('solaris') > -1):
1290 conf
.CHECK_FUNCS_IN('sendfile', 'sendfilev')
1292 #include <sys/sendfile.h>,
1295 struct sendfilevec vec[2];
1299 vec[0].sfv_fd = SFV_FD_SELF;
1300 vec[0].sfv_flag = 0;
1304 vec[1].sfv_flag = 0;
1307 nwritten = sendfilev(tofd, vec, sfvcnt, &xferred);
1310 msg
='Checking for solaris sendfilev support')
1311 if conf
.CONFIG_SET('_HAVE_SENDFILEV'):
1312 conf
.DEFINE('HAVE_SENDFILEV', '1')
1313 conf
.DEFINE('SOLARIS_SENDFILE_API', '1')
1314 conf
.DEFINE('WITH_SENDFILE', '1')
1315 elif (host_os
.rfind('aix') > -1):
1317 #include <sys/socket.h>
1320 struct sf_parms hdtrl;
1322 hdtrl.header_data = 0;
1323 hdtrl.header_length = 0;
1324 hdtrl.file_descriptor = fromfd;
1325 hdtrl.file_offset = 0;
1326 hdtrl.file_bytes = 0;
1327 hdtrl.trailer_data = 0;
1328 hdtrl.trailer_length = 0;
1329 nwritten = send_file(&tofd, &hdtrl, 0);
1332 msg
='Checking for AIX send_file support')
1333 if conf
.CONFIG_SET('_HAVE_SENDFILE'):
1334 conf
.DEFINE('HAVE_SENDFILE', '1')
1335 conf
.DEFINE('AIX_SENDFILE_API', '1')
1336 conf
.DEFINE('WITH_SENDFILE', '1')
1338 # Check for getcwd allowing a NULL arg.
1342 char *s = getcwd(NULL,0);
1343 exit(s != NULL ? 0 : 1);
1344 }''', 'GETCWD_TAKES_NULL', addmain
=False, execute
=True,
1345 msg
="getcwd takes a NULL argument")
1348 # UnixWare 7.x has its getspnam in -lgen
1349 conf
.CHECK_FUNCS_IN('getspnam', 'gen')
1350 conf
.CHECK_FUNCS_IN('getspnam', 'security')
1351 conf
.CHECK_FUNCS_IN('getspnam', 'sec')
1353 if Options
.options
.with_quotas
:
1354 # For quotas on Veritas VxFS filesystems
1355 conf
.CHECK_HEADERS('sys/fs/vx_quota.h')
1356 # For sys/quota.h and linux/quota.h
1357 conf
.CHECK_HEADERS('sys/quota.h')
1358 # For quotas on BSD systems
1359 conf
.CHECK_HEADERS('ufs/ufs/quota.h')
1360 # For quotas on Linux XFS filesystems
1361 if conf
.CHECK_HEADERS('xfs/xqm.h'):
1362 conf
.DEFINE('HAVE_XFS_QUOTAS', '1')
1366 #include "confdefs.h"
1367 #ifdef HAVE_SYS_TYPES_H
1368 #include <sys/types.h>
1370 #ifdef HAVE_ASM_TYPES_H
1371 #include <asm/types.h>
1373 #include <sys/quota.h>
1374 int i = Q_XGETQUOTA;''',
1375 define
='HAVE_XFS_QUOTAS',
1376 msg
='for XFS QUOTA in <sys/quota.h>',
1378 local_include
=False)
1380 # For IRIX like dqb_isoftlimit instead of dqb_fsoftlimit in struc dqblk
1381 conf
.CHECK_STRUCTURE_MEMBER('struct dqblk', 'dqb_fsoftlimit', define
='HAVE_DQB_FSOFTLIMIT',
1382 headers
='sys/quota.h')
1383 #darwin style quota bytecount
1384 conf
.CHECK_STRUCTURE_MEMBER('struct dqblk', 'dqb_curbytes', define
='HAVE_STRUCT_DQBLK_DQB_CURBYTES',
1385 headers
='sys/quota.h')
1386 if conf
.CHECK_HEADERS('rpcsvc/rquota.h'):
1387 conf
.DEFINE('HAVE_NFS_QUOTAS', '1')
1388 conf
.CHECK_STRUCTURE_MEMBER('struct getquota_rslt', 'getquota_rslt_u',
1389 define
='HAVE_GETQUOTA_RSLT_GETQUOTA_RSLT_U',
1390 headers
='rpcsvc/rquota.h')
1392 if (host_os
.rfind('linux') > -1):
1393 conf
.DEFINE('HAVE_QUOTACTL_LINUX', '1')
1394 elif not conf
.CONFIG_SET("HAVE_XFS_QUOTAS"):
1395 if not conf
.CHECK_CODE('''
1396 #define HAVE_QUOTACTL_4A 1
1397 #define AUTOCONF_TEST 1
1398 #include "../tests/sysquotas.c"
1400 cflags
=conf
.env
['WERROR_CFLAGS'],
1401 define
='HAVE_QUOTACTL_4A',
1402 msg
='for QUOTACTL_4A: long quotactl(int cmd, char *special, qid_t id, caddr_t addr)',
1407 #define HAVE_QUOTACTL_4B 1
1408 #define AUTOCONF_TEST 1
1409 #include "../tests/sysquotas.c"
1411 cflags
=conf
.env
['WERROR_CFLAGS'],
1412 define
='HAVE_QUOTACTL_4B',
1413 msg
='for QUOTACTL_4B: int quotactl(const char *path, int cmd, int id, char *addr)',
1418 clnt_create("", RQUOTAPROG, RQUOTAVERS, "udp");
1420 headers
="rpc/rpc.h rpc/types.h rpcsvc/rquota.h rpc/nettype.h rpc/xdr.h",
1421 define
='HAVE_NFS_QUOTAS',
1422 msg
='for NFS QUOTAS',
1424 local_include
=False)
1426 if conf
.CONFIG_SET('HAVE_QUOTACTL_LINUX') or \
1427 conf
.CONFIG_SET('HAVE_QUOTACTL_4A') or \
1428 conf
.CONFIG_SET('HAVE_QUOTACTL_4B') or \
1429 conf
.CONFIG_SET('HAVE_XFS_QUOTAS'):
1430 conf
.DEFINE('HAVE_SYS_QUOTAS', '1')
1431 conf
.DEFINE('WITH_QUOTAS', '1')
1434 # checking for clustering extensions (CTDB)
1436 if Options
.options
.with_cluster_support
== False:
1437 # configure is called with --without-cluster-support,
1438 # so don't check for and build w/o ctdb support.
1439 have_cluster_support
= False
1443 have_cluster_support
= True
1447 srcdir
= os
.path
.realpath(conf
.srcdir
)
1448 if 'EXTRA_INCLUDES' in conf
.env
:
1449 includes
= ' '.join(conf
.env
['EXTRA_INCLUDES']).replace('#', srcdir
+ '/')
1453 if Options
.options
.ctdb_dir
:
1454 CTDB_CFLAGS
= '-I' + Options
.options
.ctdb_dir
+ '/include'
1455 includes
= includes
+ ' ' + Options
.options
.ctdb_dir
+ '/include'
1457 if not conf
.env
.USING_SYSTEM_TDB
:
1458 includes
= includes
+ ' ' + srcdir
+ '/lib/tdb/include'
1460 if not conf
.env
.USING_SYSTEM_TALLOC
:
1461 includes
= includes
+ ' ' + srcdir
+ '/lib/talloc'
1463 ok
= conf
.CHECK_CODE('''
1465 #include "replace.h"
1466 #include "system/wait.h"
1467 #include "system/network.h"
1468 #define private #error __USED_RESERVED_WORD_private__
1478 'HAVE_CTDB_CHECK_CODE',
1481 msg
='Checking for header ctdb.h')
1483 CTDB_CFLAGS
+= ' -DHAVE_CTDB_H=1'
1485 have_cluster_support
= False
1486 ctdb_broken
= "ctdb.h is required for cluster support"
1488 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1489 if have_cluster_support
:
1490 ok
= conf
.CHECK_CODE('''
1492 #include "replace.h"
1493 #include "system/wait.h"
1494 #include "system/network.h"
1495 #define private #error __USED_RESERVED_WORD_private__
1499 #include <ctdb_private.h>
1506 'HAVE_CTDB_CHECK_CODE',
1509 msg
='Checking for header ctdb_private.h')
1511 CTDB_CFLAGS
+= ' -DHAVE_CTDB_PRIVATE_H=1'
1513 have_cluster_support
= False
1514 ctdb_broken
= "ctdb_private.h is required for cluster support"
1516 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1517 if have_cluster_support
:
1518 ok
= conf
.CHECK_CODE('''
1520 #include "replace.h"
1521 #include "system/wait.h"
1522 #include "system/network.h"
1523 #define private #error __USED_RESERVED_WORD_private__
1527 #include <ctdb_protocol.h>
1534 'HAVE_CTDB_CHECK_CODE',
1537 msg
='Checking for header ctdb_protocol.h')
1539 CTDB_CFLAGS
+= ' -DHAVE_CTDB_PROTOCOL_H=1'
1541 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1542 if have_cluster_support
:
1543 ok
= conf
.CHECK_CODE('''
1545 #include "replace.h"
1546 #include "system/wait.h"
1547 #include "system/network.h"
1551 #include <ctdb_private.h>
1555 int i = (int)CTDB_CONTROL_TRANS3_COMMIT;
1559 'HAVE_CTDB_CHECK_CODE',
1562 msg
='Checking for transaction support (TRANS3_COMMIT control)')
1564 CTDB_CFLAGS
+= ' -DHAVE_CTDB_CONTROL_TRANS3_COMMIT_DECL=1'
1566 have_cluster_support
= False
1567 ctdb_broken
= "ctdb transaction support missing or too old"
1569 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1570 if have_cluster_support
:
1571 ok
= conf
.CHECK_CODE('''
1573 #include "replace.h"
1574 #include "system/wait.h"
1575 #include "system/network.h"
1579 #include <ctdb_private.h>
1583 int i = (int)CTDB_CONTROL_SCHEDULE_FOR_DELETION;
1587 'HAVE_CTDB_CHECK_CODE',
1590 msg
='Checking for SCHEDULE_FOR_DELETION control')
1592 CTDB_CFLAGS
+= ' -DHAVE_CTDB_CONTROL_SCHEDULE_FOR_DELETION_DECL=1'
1594 if not Options
.options
.enable_old_ctdb
:
1595 have_cluster_support
= False
1596 ctdb_broken
= "SCHEDULE_FOR_DELETION control missing"
1598 Logs
.warn("ignoring missing SCHEDULE_FOR_DELETION control (--enable-old-ctdb)")
1600 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1601 if have_cluster_support
:
1602 ok
= conf
.CHECK_CODE('''
1604 #include "replace.h"
1605 #include "system/wait.h"
1606 #include "system/network.h"
1613 int i = (int)CTDB_WANT_READONLY;
1617 'HAVE_CTDB_CHECK_CODE',
1620 msg
='Checking for CTDB readonly records support')
1622 CTDB_CFLAGS
+= ' -DHAVE_CTDB_WANT_READONLY_DECL=1'
1624 if not Options
.options
.enable_old_ctdb
:
1625 have_cluster_support
= False
1626 ctdb_broken
= "support for CTDB readonly records missing"
1628 Logs
.warn("ignoring missing READONLY support (--enable-old-ctdb)")
1630 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1631 if have_cluster_support
:
1632 ok
= conf
.CHECK_CODE('''
1634 #include "replace.h"
1635 #include "system/wait.h"
1636 #include "system/network.h"
1640 #include <ctdb_private.h>
1644 struct ctdb_control_tcp _x;
1648 'HAVE_CTDB_CHECK_CODE',
1651 msg
='Checking for ctdb ipv4 support')
1653 CTDB_CFLAGS
+= ' -DHAVE_STRUCT_CTDB_CONTROL_TCP=1'
1655 have_cluster_support
= False
1656 ctdb_broken
= "missing struct ctdb_control_tcp"
1658 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1659 if have_cluster_support
:
1660 ok
= conf
.CHECK_CODE('''
1662 #include "replace.h"
1663 #include "system/wait.h"
1664 #include "system/network.h"
1668 #include <ctdb_private.h>
1672 struct ctdb_control_tcp_addr _x;
1676 'HAVE_CTDB_CHECK_CODE',
1679 msg
='Checking for ctdb ipv6 support')
1681 CTDB_CFLAGS
+= ' -DHAVE_STRUCT_CTDB_CONTROL_TCP_ADDR=1'
1683 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1684 if have_cluster_support
:
1685 ok
= conf
.CHECK_CODE('''
1687 #include "replace.h"
1688 #include "system/wait.h"
1689 #include "system/network.h"
1693 #include <ctdb_private.h>
1697 int i = (int)CTDB_CONTROL_CHECK_SRVIDS;
1701 'HAVE_CTDB_CHECK_CODE',
1704 msg
='Checking for CHECK_SRVIDS control')
1706 CTDB_CFLAGS
+= ' -DHAVE_CTDB_CONTROL_CHECK_SRVIDS_DECL=1'
1708 if not Options
.options
.enable_old_ctdb
:
1709 have_cluster_support
= False
1710 ctdb_broken
= "CHECK_SRVIDS control missing"
1712 Logs
.warn("ignoring missing CHECK_SRVIDS control (--enable-old-ctdb)")
1714 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1715 conf
.undefine('HAVE_CTDB_CHECK_CODE')
1716 if have_cluster_support
:
1717 Logs
.info("building with cluster support")
1718 conf
.env
['CTDB_CFLAGS'] = CTDB_CFLAGS
1720 if Options
.options
.with_cluster_support
== False:
1721 Logs
.info("building without cluster support (--without-cluster-support)")
1722 elif Options
.options
.with_cluster_support
== True:
1723 Logs
.error("Cluster support not available: " + ctdb_broken
)
1724 conf
.fatal("Cluster support not found, but --with-cluster-support was specified")
1726 Logs
.info("building without cluster support: " + ctdb_broken
)
1727 conf
.env
['CTDB_CFLAGS'] = ''
1730 conf
.CHECK_CODE('__attribute__((destructor)) static void cleanup(void) { }',
1731 'HAVE_FUNCTION_ATTRIBUTE_DESTRUCTOR',
1734 msg
='Checking whether we can compile with __attribute__((destructor))')
1736 conf
.CHECK_CODE('void seekdir(DIR *d, long loc) { return; }',
1737 'SEEKDIR_RETURNS_VOID',
1738 headers
='sys/types.h dirent.h',
1739 msg
='Checking whether seekdir returns void')
1741 if Options
.options
.with_profiling_data
:
1742 conf
.DEFINE('WITH_PROFILE', 1);
1744 PTHREAD_CFLAGS
='error'
1745 PTHREAD_LDFLAGS
='error'
1747 if PTHREAD_LDFLAGS
== 'error':
1748 if conf
.CHECK_FUNCS_IN('pthread_attr_init', 'pthread'):
1749 PTHREAD_CFLAGS
='-D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS'
1750 PTHREAD_LDFLAGS
='-lpthread'
1751 if PTHREAD_LDFLAGS
== 'error':
1752 if conf
.CHECK_FUNCS_IN('pthread_attr_init', 'pthreads'):
1753 PTHREAD_CFLAGS
='-D_THREAD_SAFE'
1754 PTHREAD_LDFLAGS
='-lpthreads'
1755 if PTHREAD_LDFLAGS
== 'error':
1756 if conf
.CHECK_FUNCS_IN('pthread_attr_init', 'c_r'):
1757 PTHREAD_CFLAGS
='-D_THREAD_SAFE -pthread'
1758 PTHREAD_LDFLAGS
='-pthread'
1759 if PTHREAD_LDFLAGS
== 'error':
1760 if conf
.CHECK_FUNCS('pthread_attr_init'):
1761 PTHREAD_CFLAGS
='-D_REENTRANT'
1762 PTHREAD_LDFLAGS
='-lpthread'
1763 # especially for HP-UX, where the CHECK_FUNC macro fails to test for
1764 # pthread_attr_init. On pthread_mutex_lock it works there...
1765 if PTHREAD_LDFLAGS
== 'error':
1766 if conf
.CHECK_FUNCS_IN('pthread_mutex_lock', 'pthread'):
1767 PTHREAD_CFLAGS
='-D_REENTRANT'
1768 PTHREAD_LDFLAGS
='-lpthread'
1770 if PTHREAD_CFLAGS
!= 'error' and PTHREAD_LDFLAGS
!= 'error':
1771 conf
.ADD_CFLAGS(PTHREAD_CFLAGS
)
1772 conf
.ADD_LDFLAGS(PTHREAD_LDFLAGS
)
1773 conf
.CHECK_HEADERS('pthread.h')
1774 conf
.DEFINE('HAVE_PTHREAD', '1')
1776 if Options
.options
.with_pthreadpool
:
1777 if conf
.CONFIG_SET('HAVE_PTHREAD'):
1778 conf
.DEFINE('WITH_PTHREADPOOL', '1')
1780 Logs
.warn("pthreadpool support cannot be enabled when pthread support was not found")
1781 conf
.undefine('WITH_PTHREADPOOL')
1783 if conf
.CHECK_HEADERS('gpfs_gpl.h'):
1784 conf
.DEFINE('HAVE_GPFS', '1')
1786 if (conf
.CHECK_HEADERS('linux/ioctl.h sys/ioctl.h linux/fs.h') and
1787 conf
.CHECK_DECLS('FS_IOC_GETFLAGS FS_COMPR_FL', headers
='linux/fs.h')):
1788 conf
.DEFINE('HAVE_LINUX_IOCTL', '1')
1790 conf
.env
['CCFLAGS_CEPHFS'] = "-D_FILE_OFFSET_BITS=64"
1791 if Options
.options
.libcephfs_dir
:
1792 conf
.env
['CPPPATH_CEPHFS'] = Options
.options
.libcephfs_dir
+ '/include'
1793 conf
.env
['LIBPATH_CEPHFS'] = Options
.options
.libcephfs_dir
+ '/lib'
1795 if conf
.CHECK_HEADERS('cephfs/libcephfs.h', False, False, 'cephfs') and conf
.CHECK_LIB('cephfs'):
1796 conf
.DEFINE('HAVE_CEPH', '1')
1798 if Options
.options
.with_glusterfs
:
1799 conf
.check_cfg(package
='glusterfs-api', args
='"glusterfs-api >= 4" --cflags --libs',
1800 msg
='Checking for glusterfs-api >= 4', uselib_store
="GFAPI")
1801 conf
.CHECK_HEADERS('api/glfs.h', lib
='gfapi')
1802 conf
.CHECK_LIB('gfapi', shlib
=True)
1804 if conf
.CONFIG_SET('HAVE_API_GLFS_H'):
1805 conf
.DEFINE('HAVE_GLUSTERFS', '1')
1807 conf
.SET_TARGET_TYPE('gfapi', 'EMPTY')
1808 conf
.undefine('HAVE_GLUSTERFS')
1810 conf
.SET_TARGET_TYPE('gfapi', 'EMPTY')
1811 conf
.undefine('HAVE_GLUSTERFS')
1813 conf
.env
.build_regedit
= False
1814 if not Options
.options
.with_regedit
== False:
1815 conf
.PROCESS_SEPARATE_RULE('system_ncurses')
1816 if conf
.CONFIG_SET('HAVE_NCURSES'):
1817 conf
.env
.build_regedit
= True
1819 if conf
.env
.build_regedit
:
1820 Logs
.info("building regedit")
1822 if Options
.options
.with_regedit
== False:
1823 Logs
.info("not building regedit (--without-regedit)")
1824 elif Options
.options
.with_regedit
== True:
1825 Logs
.error("ncurses not available, cannot build regedit")
1826 conf
.fatal("ncurses not available, but --with-regedit was specified")
1828 Logs
.info("ncurses not available, not building regedit")
1831 default_static_modules
.extend(TO_LIST('''pdb_smbpasswd pdb_tdbsam pdb_wbc_sam
1832 auth_sam auth_unix auth_winbind auth_wbc
1833 auth_domain auth_builtin vfs_default
1834 nss_info_template idmap_tdb idmap_passdb
1837 default_shared_modules
.extend(TO_LIST('''vfs_recycle vfs_audit vfs_extd_audit vfs_full_audit vfs_netatalk
1838 vfs_fake_perms vfs_default_quota vfs_readonly vfs_cap
1839 vfs_expand_msdfs vfs_shadow_copy vfs_shadow_copy2
1840 auth_script vfs_readahead vfs_xattr_tdb vfs_posix_eadb
1841 vfs_streams_xattr vfs_streams_depot vfs_acl_xattr vfs_acl_tdb
1842 vfs_smb_traffic_analyzer vfs_preopen vfs_catia vfs_scannedonly
1846 vfs_crossrename vfs_linux_xfs_sgid
1847 vfs_time_audit idmap_autorid idmap_tdb2
1849 idmap_rid idmap_hash idmap_rfc2307'''))
1851 if Options
.options
.developer
:
1852 default_static_modules
.extend(TO_LIST('charset_weird'))
1853 default_shared_modules
.extend(TO_LIST('perfcount_test'))
1854 default_shared_modules
.extend(TO_LIST('vfs_skel_opaque vfs_skel_transparent vfs_shadow_copy_test'))
1855 default_shared_modules
.extend(TO_LIST('auth_skel pdb_test'))
1857 if Options
.options
.enable_selftest
or Options
.options
.developer
:
1858 default_shared_modules
.extend(TO_LIST('vfs_fake_acls vfs_nfs4acl_xattr'))
1861 if conf
.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'):
1862 default_static_modules
.extend(TO_LIST('pdb_samba_dsdb auth_samba4 vfs_dfs_samba4'))
1864 if conf
.CONFIG_SET('HAVE_FREEBSD_SUNACL_H'):
1865 default_shared_modules
.extend(TO_LIST('vfs_zfsacl'))
1867 if conf
.CONFIG_SET('HAVE_DIRFD_DECL'):
1868 default_shared_modules
.extend(TO_LIST('vfs_syncops vfs_dirsort'))
1870 if conf
.CONFIG_SET('HAVE_STATFS_F_FSID'):
1871 default_shared_modules
.extend(TO_LIST('vfs_fileid'))
1873 if (conf
.CONFIG_SET('HAVE_MSGHDR_MSG_CONTROL') or conf
.CONFIG_SET('HAVE_MSGHDR_MSG_ACCTRIGHTS')):
1874 default_shared_modules
.extend(TO_LIST('vfs_aio_fork'))
1876 if Options
.options
.with_pthreadpool
:
1877 default_shared_modules
.extend(TO_LIST('vfs_aio_pthread'))
1879 if conf
.CONFIG_SET('HAVE_AIO'):
1880 default_shared_modules
.extend(TO_LIST('vfs_aio_posix'))
1882 if conf
.CONFIG_SET('HAVE_LINUX_KERNEL_AIO'):
1883 default_shared_modules
.extend(TO_LIST('vfs_aio_linux'))
1885 if conf
.CONFIG_SET('HAVE_LDAP'):
1886 default_static_modules
.extend(TO_LIST('pdb_ldapsam idmap_ldap'))
1888 if conf
.CONFIG_SET('DARWINOS'):
1889 default_static_modules
.extend(TO_LIST('charset_macosxfs'))
1891 if conf
.CONFIG_SET('HAVE_GPFS'):
1892 default_shared_modules
.extend(TO_LIST('vfs_gpfs'))
1894 if conf
.CONFIG_SET('HAVE_LINUX_IOCTL'):
1895 default_shared_modules
.extend(TO_LIST('vfs_btrfs'))
1897 if conf
.CONFIG_SET('SAMBA_FAM_LIBS'):
1898 default_shared_modules
.extend(TO_LIST('vfs_notify_fam'))
1900 if conf
.CONFIG_SET("HAVE_CEPH"):
1901 default_shared_modules
.extend(TO_LIST('vfs_ceph'))
1903 if conf
.CONFIG_SET('HAVE_GLUSTERFS'):
1904 default_shared_modules
.extend(TO_LIST('vfs_glusterfs'))
1906 explicit_shared_modules
= TO_LIST(Options
.options
.shared_modules
, delimiter
=',')
1907 explicit_static_modules
= TO_LIST(Options
.options
.static_modules
, delimiter
=',')
1909 def replace_list_item(lst
, item
, value
):
1911 idx
= lst
.index(item
)
1915 # PDB module file name should have the same name as module registers itself
1916 # In Autoconf build we export LDAP passdb module as ldapsam but WAF build
1917 # was always exporting pdb_ldap. In order to support existing packages
1918 # allow referring to pdb_ldapsam as pdb_ldap but use proper name internally.
1919 replace_list_item(explicit_shared_modules
, 'pdb_ldap', 'pdb_ldapsam')
1920 replace_list_item(explicit_static_modules
, 'pdb_ldap', 'pdb_ldapsam')
1922 final_static_modules
= default_static_modules
1923 final_shared_modules
= default_shared_modules
1925 for m
in explicit_static_modules
:
1926 if m
in final_shared_modules
:
1927 final_shared_modules
.remove(m
)
1928 final_static_modules
.append(m
)
1929 for m
in explicit_shared_modules
:
1930 if m
in final_static_modules
:
1931 final_static_modules
.remove(m
)
1932 final_shared_modules
.append(m
)
1934 if ("auth_domain" not in final_static_modules
) or \
1935 ("auth_builtin" not in final_static_modules
) or \
1936 ("auth_sam" not in final_static_modules
) or \
1937 ("auth_winbind" not in final_static_modules
):
1938 raise Utils
.WafError('These auth modules MUST be configured as static modules: auth_domain, auth_builtin, auth_sam, auth_winbind')
1940 conf
.env
['static_modules'] = final_static_modules
1941 conf
.env
['shared_modules'] = final_shared_modules
1943 conf
.DEFINE('STRING_STATIC_MODULES', ' '.join(final_static_modules
), quote
=True)
1948 prefixes
= ['vfs', 'pdb', 'auth', 'nss_info', 'charset', 'idmap', 'gpext', 'perfcount']
1949 conf
.env
['MODULE_PREFIXES'] = prefixes
1951 for m
in final_static_modules
:
1953 if not p
in static_list
:
1955 static_list
[p
].append(m
)
1956 for m
in final_shared_modules
:
1958 if not p
in shared_list
:
1960 shared_list
[p
].append(m
)
1963 static_env
= "%s_STATIC" % p
.upper()
1964 shared_env
= "%s_SHARED" % p
.upper()
1965 conf
.env
[static_env
] = []
1966 conf
.env
[shared_env
] = []
1967 if p
in static_list
:
1969 for entry
in static_list
[p
]:
1970 decl_list
+= "extern NTSTATUS %s_init(void); " % entry
1971 conf
.env
[static_env
].append('%s' % entry
)
1972 decl_list
= decl_list
.rstrip()
1973 conf
.DEFINE('static_decl_%s' % p
, decl_list
)
1974 conf
.DEFINE('static_init_%s' % p
, '{ %s_init(); }' % '_init(); '.join(static_list
[p
]))
1976 conf
.DEFINE('static_decl_%s' % p
, '')
1977 conf
.DEFINE('static_init_%s' % p
, '{}')
1978 if p
in shared_list
:
1979 for entry
in shared_list
[p
]:
1980 conf
.DEFINE('%s_init' % entry
, 'samba_init_module')
1981 conf
.env
[shared_env
].append('%s' % entry
)
1983 conf
.SAMBA_CONFIG_H('include/config.h')
1986 "build 'tags' file using ctags"
1988 source_root
= os
.path
.dirname(Utils
.g_module
.root_path
)
1989 cmd
= 'ctags $(find %s/.. -name "*.[ch]" | grep -v "*_proto\.h")' % source_root
1990 print("Running: %s" % cmd
)