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
.SAMBA3_ADD_OPTION('fake-kaserver',
53 help=("Include AFS fake-kaserver support"), default
=False)
55 opt
.add_option('--with-ctdb-dir',
56 help=("Directory under which ctdb is installed"),
57 action
="store", dest
='ctdb_dir', default
=None)
58 opt
.add_option('--enable-old-ctdb',
59 help=("enable building against (too) old version of ctdb (default=false)"),
60 action
="store_true", dest
='enable_old_ctdb', default
=False)
62 opt
.add_option('--with-libcephfs',
63 help=("Directory under which libcephfs is installed"),
64 action
="store", dest
='libcephfs_dir', default
=None)
66 opt
.SAMBA3_ADD_OPTION('glusterfs', with_name
="enable", without_name
="disable", default
=True)
70 from samba_utils
import TO_LIST
72 default_static_modules
= []
73 default_shared_modules
= []
75 if Options
.options
.developer
:
76 conf
.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD')
77 conf
.env
.developer
= True
79 if sys
.platform
!= 'openbsd5':
80 conf
.ADD_LDFLAGS("-Wl,--export-dynamic", testflags
=True)
82 conf
.CHECK_HEADERS('execinfo.h libexc.h libunwind.h netdb.h')
83 conf
.CHECK_HEADERS('linux/falloc.h')
85 conf
.CHECK_FUNCS('getcwd fchown chmod fchmod mknod')
86 conf
.CHECK_FUNCS('strtol strchr strupr chflags')
87 conf
.CHECK_FUNCS('getrlimit fsync fdatasync setpgid')
88 conf
.CHECK_FUNCS('setsid glob strpbrk crypt16 getauthuid')
89 conf
.CHECK_FUNCS('sigprocmask sigblock sigaction sigset innetgr')
90 conf
.CHECK_FUNCS('initgroups select poll rdchk getgrnam getgrent pathconf')
91 conf
.CHECK_FUNCS('setpriv setgidx setuidx setgroups syscall sysconf')
92 conf
.CHECK_FUNCS('atexit grantpt posix_openpt fallocate posix_fallocate')
93 conf
.CHECK_FUNCS('fseeko setluid')
94 conf
.CHECK_FUNCS('getpwnam', headers
='sys/types.h pwd.h')
95 conf
.CHECK_FUNCS('fdopendir')
96 conf
.CHECK_FUNCS('fstatat')
97 conf
.CHECK_FUNCS('getpwent_r setenv strcasecmp fcvt fcvtl')
98 conf
.CHECK_FUNCS('syslog vsyslog timegm setlocale')
99 conf
.CHECK_FUNCS_IN('nanosleep', 'rt')
100 conf
.CHECK_FUNCS('lutimes futimes utimensat futimens')
101 conf
.CHECK_FUNCS('mlock munlock mlockall munlockall')
102 conf
.CHECK_FUNCS('memalign posix_memalign hstrerror')
103 conf
.CHECK_FUNCS('shmget')
104 conf
.CHECK_FUNCS_IN('shm_open', 'rt', checklibc
=True)
105 #FIXME: for some reason this one still fails
106 conf
.CHECK_FUNCS_IN('yp_get_default_domain', 'nsl')
107 conf
.CHECK_FUNCS_IN('dn_expand _dn_expand __dn_expand', 'resolv')
108 conf
.CHECK_FUNCS_IN('dn_expand', 'inet')
109 conf
.CHECK_DECLS('fdatasync', reverse
=True)
110 conf
.CHECK_DECLS('readahead', reverse
=True, headers
='fcntl.h')
112 if conf
.CONFIG_SET('HAVE_LONG_LONG'):
113 conf
.DEFINE('HAVE_LONGLONG', 1)
115 if conf
.CHECK_CODE('''
116 #if defined(HAVE_UNISTD_H)
119 long ret = splice(0,0,1,0,400,SPLICE_F_MOVE);
123 conf
.CHECK_DECLS('splice', reverse
=True, headers
='fcntl.h')
125 # Check for inotify support
126 conf
.CHECK_HEADERS('sys/inotify.h')
127 if "HAVE_SYS_INOTIFY_H" in conf
.env
:
128 conf
.DEFINE('HAVE_INOTIFY', 1)
130 # Check for kernel change notify support
133 #define F_NOTIFY 1026
136 exit(fcntl(open("/tmp", O_RDONLY), F_NOTIFY, 0) == -1 ? 1 : 0);
137 }''', 'HAVE_KERNEL_CHANGE_NOTIFY', addmain
=False, execute
=True,
138 headers
='fcntl.h signal.h',
139 msg
="Checking for kernel change notify support")
141 # Check for Linux kernel oplocks
143 #include <sys/types.h>
147 #define F_NOTIFY 1026
150 exit(fcntl(open("/tmp", O_RDONLY), F_NOTIFY, 0) == -1 ? 1 : 0);
151 }''', 'HAVE_KERNEL_OPLOCKS_LINUX', addmain
=False, execute
=True,
152 msg
="Checking for Linux kernel oplocks")
154 # Check for IRIX kernel oplock types
155 conf
.CHECK_CODE('oplock_stat_t t; t.os_state = OP_REVOKE; t.os_dev = 1; t.os_ino = 1;',
156 'HAVE_KERNEL_OPLOCKS_IRIX', headers
='fcntl.h',
157 msg
="Checking for IRIX kernel oplock types")
159 # Check for kernel share modes
161 #include <sys/types.h>
164 #include <sys/file.h>
170 exit(flock(open("/dev/null", O_RDWR), LOCK_MAND|LOCK_READ) != 0);
171 }''', 'HAVE_KERNEL_SHARE_MODES', addmain
=False, execute
=True,
172 msg
="Checking for kernel share modes")
177 if Options
.options
.with_fam
is None:
179 elif Options
.options
.with_fam
== True:
182 if check_for_fam
and conf
.CHECK_HEADERS('fam.h'):
183 if conf
.CHECK_FUNCS_IN('FAMOpen2', 'fam'):
185 elif conf
.CHECK_FUNCS_IN('FAMOpen2', 'fam C'):
186 samba_fam_libs
='fam C'
187 conf
.CHECK_TYPE('enum FAMCodes', headers
='fam.h',
188 define
='HAVE_FAM_H_FAMCODES_TYPEDEF',
189 msg
='Checking whether enum FAMCodes is available')
190 conf
.CHECK_FUNCS_IN('FAMNoExists', 'fam')
192 if samba_fam_libs
is not None:
193 conf
.DEFINE('SAMBA_FAM_LIBS', samba_fam_libs
)
195 if Options
.options
.with_fam
== True:
196 conf
.fatal('FAM support requested, but no suitable FAM library found')
198 Logs
.warn('no suitable FAM library found')
200 # check for libarchive (tar command in smbclient)
201 # None means autodetect, True/False means enable/disable
202 conf
.env
['archive_lib'] = ''
203 if Options
.options
.with_libarchive
is not False:
204 libarchive_mandatory
= Options
.options
.with_libarchive
== True
205 Logs
.info("Checking for libarchive existence")
206 if conf
.CHECK_BUNDLED_SYSTEM('libarchive', minversion
='3.1.2'):
207 conf
.env
['archive_lib'] = 'libarchive'
208 elif libarchive_mandatory
:
209 conf
.fatal('libarchive support requested, but no suitable pkgconfig found')
211 # check for DMAPI libs
212 Logs
.info("Checking for DMAPI library existence")
213 conf
.env
['dmapi_lib'] = ''
215 if conf
.CHECK_FUNCS_IN('dm_get_eventlist', 'dm'):
216 samba_dmapi_lib
= 'dm'
218 if conf
.CHECK_FUNCS_IN('dm_get_eventlist', 'jfsdm'):
219 samba_dmapi_lib
= 'jfsdm'
221 if conf
.CHECK_FUNCS_IN('dm_get_eventlist', 'dmapi'):
222 samba_dmapi_lib
= 'dmapi'
224 if conf
.CHECK_FUNCS_IN('dm_get_eventlist', 'xdsm'):
225 samba_dmapi_lib
= 'xdsm'
226 # only bother to test headers and compilation when a candidate
227 # library has been found
228 if Options
.options
.with_dmapi
== True and samba_dmapi_lib
== '':
229 conf
.fatal('DMAPI support requested, but no suitable DMAPI library found')
231 conf
.CHECK_HEADERS('sys/dmi.h xfs/dmapi.h sys/jfsdmapi.h sys/dmapi.h dmapi.h')
233 #include <time.h> /* needed by Tru64 */
234 #include <sys/types.h> /* needed by AIX */
235 #ifdef HAVE_XFS_DMAPI_H
236 #include <xfs/dmapi.h>
237 #elif defined(HAVE_SYS_DMI_H)
239 #elif defined(HAVE_SYS_JFSDMAPI_H)
240 #include <sys/jfsdmapi.h>
241 #elif defined(HAVE_SYS_DMAPI_H)
242 #include <sys/dmapi.h>
243 #elif defined(HAVE_DMAPI_H)
247 /* This link test is designed to fail on IRI 6.4, but should
248 * succeed on Linux, IRIX 6.5 and AIX.
250 int main(int argc, char **argv)
253 dm_eventset_t events;
254 /* This doesn't take an argument on IRIX 6.4. */
255 dm_init_service(&version);
256 /* IRIX 6.4 expects events to be a pointer. */
257 DMEV_ISSET(DM_EVENT_READ, events);
266 msg
='Checking whether DMAPI lib '+samba_dmapi_lib
+' can be used')
268 if conf
.CONFIG_SET('USE_DMAPI'):
269 conf
.env
['dmapi_lib'] = samba_dmapi_lib
271 if Options
.options
.with_dmapi
== True:
272 conf
.fatal('DMAPI support requested but not found');
274 # Check for various members of the stat structure
275 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_blocks', define
='HAVE_STAT_ST_BLOCKS',
276 headers
='sys/stat.h')
277 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_blksize', define
='HAVE_STAT_ST_BLKSIZE',
278 headers
='sys/stat.h')
279 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_flags', define
='HAVE_STAT_ST_FLAGS',
280 headers
='sys/types.h sys/stat.h unistd.h')
282 if "HAVE_BLKCNT_T" in conf
.env
:
284 static int test_array[1 - 2 * !(((long int)(sizeof(blkcnt_t))) <= 4)];''',
286 headers
='replace.h sys/types.h sys/stat.h unistd.h',
287 msg
="Checking whether blkcnt_t is 32 bit")
289 # If sizeof is 4 it can't be 8
290 if "HAVE_BLKCNT_T" in conf
.env
:
291 if not conf
.CONFIG_SET('SIZEOF_BLKCNT_T_4'):
293 static int test_array[1 - 2 * !(((long int)(sizeof(blkcnt_t))) <= 8)];''',
295 headers
='replace.h sys/types.h sys/stat.h unistd.h',
296 msg
="Checking whether blkcnt_t is 64 bit")
298 # Check for POSIX capability support
299 conf
.CHECK_FUNCS_IN('cap_get_proc', 'cap', headers
='sys/capability.h')
301 if "HAVE_SYS_CAPABILITY_H" in conf
.env
:
305 if (!(cap = cap_get_proc())) exit(1);
307 cap_set_flag(cap, CAP_INHERITABLE, 1, vals, CAP_CLEAR);
308 cap_set_proc(cap);''',
309 'HAVE_POSIX_CAPABILITIES', execute
=True, lib
="cap",
310 headers
='sys/capability.h',
311 msg
="Checking whether POSIX capabilities are available")
313 # Check for int16, uint16, int32 and uint32 in rpc/types.h included from
314 # rpc/rpc.h. This is *really* broken but some systems (DEC OSF1) do this.
316 if conf
.CONFIG_SET("HAVE_RPC_RPC_H"):
317 conf
.CHECK_TYPE('int16', headers
='rpc/rpc.h',
318 define
='HAVE_INT16_FROM_RPC_RPC_H',
319 msg
="Checking for int16 typedef included by rpc/rpc.h")
320 conf
.CHECK_CODE('uint16 testvar;', 'HAVE_INT16_FROM_RPC_RPC_H',
321 headers
='sys/types.h rpc/rpc.h',
322 msg
="Checking for uint16 typedef included by rpc/rpc.h")
323 conf
.CHECK_CODE('int32 testvar;', 'HAVE_INT16_FROM_RPC_RPC_H',
324 headers
='sys/types.h rpc/rpc.h',
325 msg
="Checking for int32 typedef included by rpc/rpc.h")
326 conf
.CHECK_CODE('uint32 testvar;', 'HAVE_INT16_FROM_RPC_RPC_H',
327 headers
='sys/types.h rpc/rpc.h',
328 msg
="Checking for uint32 typedef included by rpc/rpc.h")
329 conf
.CHECK_CODE('int i;', 'BROKEN_NISPLUS_INCLUDE_FILES',
330 headers
='sys/types.h sys/acl.h rpcsvc/nis.h',
331 msg
="Checking for broken nisplus include files")
333 # Check if the compiler will optimize out functions
336 this_function_does_not_exist();
339 }''', 'HAVE_COMPILER_WILL_OPTIMIZE_OUT_FNS',
340 msg
="Checking if the compiler will optimize out functions")
342 # Check if the compiler supports the LL suffix on long long integers
344 conf
.CHECK_CODE('long long i = 0x8000000000LL', 'COMPILER_SUPPORTS_LL',
346 msg
="Checking for LL suffix on long long integers")
350 _chdir __chdir chflags chmod _close __close _closedir
351 __closedir crypt16 devnm dirfd
352 DNSServiceRegister _dup __dup _dup2 __dup2 endmntent execl
354 __fchdir fchmod fchown _fcntl __fcntl fcvt fcvtl fdatasync
356 fsetxattr _fstat __fstat fsync
357 futimens futimes __fxstat getauthuid
358 getcwd _getcwd __getcwd getdents __getdents getdirentries
359 getgrent getgrnam getgrouplist getgrset getmntent getpagesize
360 getpwanam getpwent_r getrlimit
361 glob grantpt hstrerror initgroups innetgr
362 llseek _llseek __llseek _lseek __lseek
363 _lstat __lstat lutimes
364 __lxstat memalign mknod mlock mlockall munlock munlockall
365 _open __open _opendir __opendir
366 pathconf poll posix_fallocate
367 posix_memalign pread _pread __pread
368 pwrite _pwrite __pwrite
369 rdchk _read __read _readdir __readdir
371 select setenv setgidx setgroups setlocale setluid
372 setmntent setpgid setpriv setsid setuidx
373 shmget shm_open sigaction sigblock sigprocmask sigset
375 strcasecmp strchr strpbrk strsignal strtol strupr sysconf sysctl sysctlbyname
376 __sys_llseek syslog _telldir __telldir timegm
377 utimensat vsyslog _write __write __xstat
380 conf
.CHECK_SAMBA3_CHARSET() # see build/charset.py
382 # FIXME: these should be tests for features, but the old build system just
384 host_os
= sys
.platform
385 Logs
.info("building on %s" % host_os
)
387 # Python doesn't have case switches... :/
388 # FIXME: original was *linux* | gnu* | k*bsd*-gnu | kopensolaris*-gnu | *qnx*)
389 # the search for .rfind('gnu') covers gnu* and *-gnu is that too broad?
391 conf
.SET_TARGET_TYPE('sunacl', 'EMPTY')
392 if (host_os
.rfind('linux') > -1) or (host_os
.rfind('gnu') > -1) or (host_os
.rfind('qnx') > -1):
393 if host_os
.rfind('linux') > -1:
394 conf
.DEFINE('LINUX', '1')
395 elif host_os
.rfind('qnx') > -1:
396 conf
.DEFINE('QNX', '1')
397 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
398 elif (host_os
.rfind('darwin') > -1):
399 conf
.DEFINE('DARWINOS', 1)
400 conf
.ADD_CFLAGS('-fno-common')
401 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
402 elif (host_os
.rfind('freebsd') > -1):
403 conf
.DEFINE('FREEBSD', 1)
404 if conf
.CHECK_HEADERS('sunacl.h'):
405 conf
.DEFINE('HAVE_FREEBSD_SUNACL_H', '1')
406 conf
.CHECK_FUNCS_IN(['acl'], 'sunacl')
407 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
408 elif (host_os
.rfind('irix') > -1):
409 conf
.DEFINE('IRIX', 1)
410 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
411 elif (host_os
.rfind('aix') > -1):
412 conf
.DEFINE('AIX', 1)
413 conf
.DEFINE('STAT_ST_BLOCKSIZE', 'DEV_BSIZE')
414 elif (host_os
.rfind('hpux') > -1):
415 conf
.DEFINE('HPUX', 1)
416 conf
.DEFINE('STAT_ST_BLOCKSIZE', '8192')
417 elif (host_os
.rfind('osf') > -1):
418 conf
.DEFINE('OSF1', 1)
419 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
421 # FIXME: Add more checks here.
423 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
425 if Options
.options
.with_acl_support
:
426 if (host_os
.rfind('hpux') > -1):
427 Logs
.info('Using HPUX ACLs')
428 conf
.DEFINE('HAVE_HPUX_ACLS',1)
429 conf
.DEFINE('POSIX_ACL_NEEDS_MASK',1)
430 default_static_modules
.extend(TO_LIST('vfs_hpuxacl'))
431 elif (host_os
.rfind('aix') > -1):
432 Logs
.info('Using AIX ACLs')
433 conf
.DEFINE('HAVE_AIX_ACLS',1)
434 default_static_modules
.extend(TO_LIST('vfs_aixacl vfs_aixacl2'))
435 elif (host_os
.rfind('darwin') > -1):
436 Logs
.warn('ACLs on Darwin currently not supported')
437 conf
.fatal("ACL support not available on Darwin/MacOS. "
438 "Use --without-acl-support for building without "
440 "ACL support is required to change permissions "
441 "from Windows clients.")
443 conf
.CHECK_FUNCS_IN(['acl_get_file'], 'acl')
444 if conf
.CHECK_CODE('''
447 acl_entry_t *entry_p;
448 return acl_get_entry(acl, entry_id, entry_p);
451 headers
='sys/types.h sys/acl.h', link
=False,
452 msg
="Checking for POSIX ACL support") :
454 acl_permset_t permset_d;
456 return acl_get_perm_np(permset_d, perm);
458 'HAVE_ACL_GET_PERM_NP',
459 headers
='sys/types.h sys/acl.h', link
=True,
460 msg
="Checking whether acl_get_perm_np() is available")
461 default_static_modules
.extend(TO_LIST('vfs_posixacl'))
462 elif conf
.CHECK_FUNCS_IN(['facl'], 'sec'):
463 Logs
.info('Using solaris or UnixWare ACLs')
464 conf
.DEFINE('HAVE_SOLARIS_UNIXWARE_ACLS',1)
465 default_static_modules
.extend(TO_LIST('vfs_solarisacl'))
466 elif conf
.CHECK_FUNCS_IN(['acl_get_fd'], 'pacl'):
467 Logs
.info('Using Tru64 ACLs')
468 conf
.DEFINE('HAVE_TRU64_ACLS',1)
469 default_static_modules
.extend(TO_LIST('vfs_tru64acl'))
471 conf
.fatal("ACL support not found. Try installing libacl1-dev "
473 "Otherwise, use --without-acl-support to build "
474 "without ACL support. "
475 "ACL support is required to change permissions from "
478 if conf
.CHECK_FUNCS('dirfd'):
479 conf
.DEFINE('HAVE_DIRFD_DECL', 1)
481 conf
.CHECK_CODE('struct statfs fsd; fsid_t fsid = fsd.f_fsid; return statfs(".", &fsd);',
482 'HAVE_STATFS_F_FSID',
483 msg
="vfs_fileid checking for statfs() and struct statfs.f_fsid",
484 headers
='sys/types.h sys/statfs.h',
487 if conf
.CONFIG_SET('HAVE_FALLOCATE'):
489 int ret = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 10);''',
490 'HAVE_LINUX_FALLOCATE',
491 msg
="Checking whether the Linux 'fallocate' function is available",
492 headers
='unistd.h sys/types.h fcntl.h linux/falloc.h')
494 ssize_t err = readahead(0,0,0x80000);''',
495 'HAVE_LINUX_READAHEAD',
496 msg
="Checking whether Linux readahead is available",
497 headers
='unistd.h fcntl.h')
498 conf
.CHECK_DECLS('readahead', headers
='fcntl.h', always
=True)
500 conf
.CHECK_CODE('int fd = openat(AT_FDCWD, ".", O_RDONLY);',
502 msg
='Checking for openat',
505 if Options
.options
.with_aio_support
:
506 conf
.CHECK_FUNCS_IN('aio_read', 'aio')
507 conf
.CHECK_FUNCS_IN('aio_read', 'rt')
508 conf
.CHECK_CODE('struct aiocb a; return aio_read(&a);',
510 msg
='Checking for asynchronous io support',
511 headers
='sys/types.h aio.h',
513 if conf
.CONFIG_SET('HAVE_AIO'):
514 conf
.CHECK_CODE('struct aiocb a; return aio_read(&a);', 'HAVE_AIO_READ', msg
='Checking for aio_read', headers
='aio.h', lib
='aio rt')
515 conf
.CHECK_CODE('struct aiocb a; return aio_write(&a);', 'HAVE_AIO_WRITE', msg
='Checking for aio_write', headers
='aio.h', lib
='aio rt')
516 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')
517 conf
.CHECK_CODE('struct aiocb a; return aio_return(&a);', 'HAVE_AIO_RETURN', msg
='Checking for aio_return', headers
='aio.h', lib
='aio rt')
518 conf
.CHECK_CODE('struct aiocb a; return aio_error(&a);', 'HAVE_AIO_ERROR', msg
='Checking for aio_error', headers
='aio.h', lib
='aio rt')
519 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')
520 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')
521 if not conf
.CONFIG_SET('HAVE_AIO'):
522 conf
.DEFINE('HAVE_NO_AIO', '1')
524 conf
.DEFINE('HAVE_NO_AIO', '1')
526 if host_os
.rfind('linux') > -1:
527 conf
.CHECK_FUNCS_IN('io_submit', 'aio')
529 struct io_event ioev;
535 fd = eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
536 io_queue_init(128,&ctx);
537 io_prep_pwrite(ioc, 1, buf, 1, 0);
538 io_prep_pread(ioc, 1, buf, 1, 0);
539 io_set_eventfd(ioc, fd);
540 io_set_callback(ioc, (io_callback_t)(0));
541 io_submit(ctx, 1, &ioc);
542 io_getevents(ctx, 1, 1, &ioev, &ts);
544 'HAVE_LINUX_KERNEL_AIO',
545 msg
='Checking for linux kernel asynchronous io support',
546 headers
='unistd.h stdlib.h sys/types.h fcntl.h sys/eventfd.h libaio.h',
553 char control[CMSG_SPACE(sizeof(int))];
555 msg.msg_control = control_un.control;
556 msg.msg_controllen = sizeof(control_un.control);
558 'HAVE_STRUCT_MSGHDR_MSG_CONTROL',
559 msg
='Checking if we can use msg_control for passing file descriptors',
560 headers
='sys/types.h stdlib.h stddef.h sys/socket.h sys/un.h')
564 msg.msg_acctrights = (caddr_t) &fd;
565 msg.msg_acctrightslen = sizeof(fd);
567 'HAVE_STRUCT_MSGHDR_MSG_ACCTRIGHTS',
568 msg
='Checking if we can use msg_acctrights for passing file descriptors',
569 headers
='sys/types.h stdlib.h stddef.h sys/socket.h sys/un.h')
571 if Options
.options
.with_winbind
:
572 conf
.env
.build_winbind
= True
573 conf
.DEFINE('WITH_WINBIND', '1')
575 conf
.find_program('awk', var
='AWK')
576 conf
.find_program('perl', var
='PERL')
578 conf
.CHECK_HEADERS('asm/types.h')
580 conf
.CHECK_CODE('dev_t dev; int i = major(dev); return 0', "HAVE_DEVICE_MAJOR_FN",
581 headers
='unistd.h sys/types.h',
582 msg
="Checking for major macro")
584 conf
.CHECK_CODE('dev_t dev; int i = minor(dev); return 0', "HAVE_DEVICE_MINOR_FN",
585 headers
='unistd.h sys/types.h',
586 msg
="Checking for minor macro")
588 conf
.CHECK_STRUCTURE_MEMBER('struct dirent', 'd_off',
589 headers
='unistd.h sys/types.h dirent.h',
590 define
='HAVE_DIRENT_D_OFF')
592 conf
.CHECK_FUNCS('setnetgrent getnetgrent endnetgrent')
593 if conf
.CHECK_CFLAGS('-Werror-implicit-function-declaration'):
594 netgrent_cflags
= '-Werror-implicit-function-declaration'
597 conf
.CHECK_CODE('setnetgrent("foo")', 'HAVE_SETNETGRENT_PROTOTYPE',
598 msg
="Checking for setnetgrent prototype",
599 headers
='netdb.h netgroup.h',
600 cflags
=netgrent_cflags
)
601 conf
.CHECK_CODE('getnetgrent', 'HAVE_GETNETGRENT_PROTOTYPE',
602 msg
="Checking for getnetgrent prototype",
603 headers
='netdb.h netgroup.h',
604 cflags
=netgrent_cflags
)
605 conf
.CHECK_CODE('endnetgrent', 'HAVE_ENDNETGRENT_PROTOTYPE',
606 msg
="Checking for endnetgrent prototype",
607 headers
='netdb.h netgroup.h',
608 cflags
=netgrent_cflags
)
612 if Options
.options
.with_cups
:
613 conf
.find_program('cups-config', var
='CUPS_CONFIG')
614 if conf
.env
.CUPS_CONFIG
:
615 # we would normally use --libs here, but cups-config incorrectly adds
616 # gssapi_krb5 and other libraries to its --libs output. That breaks the use
617 # of an in-tree heimdal kerberos
618 conf
.check_cfg(path
=conf
.env
.CUPS_CONFIG
, args
="--cflags --ldflags",
619 package
="", uselib_store
="CUPS")
620 conf
.CHECK_HEADERS('cups/cups.h cups/language.h', lib
='cups')
621 conf
.CHECK_FUNCS_IN('httpConnect httpConnectEncrypt', 'cups')
622 if conf
.CONFIG_SET('HAVE_CUPS_CUPS_H') and conf
.CONFIG_SET('HAVE_CUPS_LANGUAGE_H'):
623 conf
.DEFINE('HAVE_CUPS', '1')
625 conf
.undefine('HAVE_CUPS')
626 conf
.SET_TARGET_TYPE('cups', 'EMPTY')
628 # define an empty subsystem for cups, to allow it to be used as an empty dependency
629 conf
.SET_TARGET_TYPE('cups', 'EMPTY')
631 if Options
.options
.with_iprint
:
632 if conf
.CONFIG_SET('HAVE_CUPS'):
633 conf
.DEFINE('HAVE_IPRINT', '1')
635 Logs
.warn("--enable-iprint=yes but cups support not sufficient")
636 if Options
.options
.with_syslog
:
637 conf
.DEFINE('WITH_SYSLOG', '1')
638 if Options
.options
.with_automount
:
639 conf
.DEFINE('WITH_AUTOMOUNT', '1')
642 if Options
.options
.with_ldap
:
643 conf
.CHECK_HEADERS('ldap.h lber.h ldap_pvt.h')
644 conf
.CHECK_TYPE('ber_tag_t', 'unsigned int', headers
='ldap.h lber.h')
645 conf
.CHECK_FUNCS_IN('ber_scanf ber_sockbuf_add_io', 'lber')
646 conf
.CHECK_VARIABLE('LDAP_OPT_SOCKBUF', headers
='ldap.h')
648 # if we LBER_OPT_LOG_PRINT_FN we can intercept ldap logging and print it out
650 conf
.CHECK_VARIABLE('LBER_OPT_LOG_PRINT_FN',
651 define
='HAVE_LBER_LOG_PRINT_FN', headers
='lber.h')
653 conf
.CHECK_FUNCS_IN('ldap_init ldap_init_fd ldap_initialize ldap_set_rebind_proc', 'ldap')
654 conf
.CHECK_FUNCS_IN('ldap_add_result_entry', 'ldap')
656 # Check if ldap_set_rebind_proc() takes three arguments
657 if conf
.CHECK_CODE('ldap_set_rebind_proc(0, 0, 0)',
658 'LDAP_SET_REBIND_PROC_ARGS',
659 msg
="Checking whether ldap_set_rebind_proc takes 3 arguments",
660 headers
='ldap.h lber.h', link
=False):
661 conf
.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '3')
663 conf
.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '2')
665 # last but not least, if ldap_init() exists, we want to use ldap
666 if conf
.CONFIG_SET('HAVE_LDAP_INIT') and conf
.CONFIG_SET('HAVE_LDAP_H'):
667 conf
.DEFINE('HAVE_LDAP', '1')
668 conf
.DEFINE('LDAP_DEPRECATED', '1')
669 conf
.env
['HAVE_LDAP'] = '1'
670 # if ber_sockbuf_add_io() and LDAP_OPT_SOCKBUF are available, we can add
671 # SASL wrapping hooks
672 if conf
.CONFIG_SET('HAVE_BER_SOCKBUF_ADD_IO') and \
673 conf
.CONFIG_SET('HAVE_LDAP_OPT_SOCKBUF'):
674 conf
.DEFINE('HAVE_LDAP_SASL_WRAPPING', '1')
676 conf
.fatal("LDAP support not found. "
677 "Try installing libldap2-dev or openldap-devel. "
678 "Otherwise, use --without-ldap to build without "
680 "LDAP support is required for the LDAP passdb backend, "
681 "LDAP idmap backends and ADS. "
682 "ADS support improves communication with "
683 "Active Directory domain controllers.")
685 conf
.SET_TARGET_TYPE('ldap', 'EMPTY')
686 conf
.SET_TARGET_TYPE('lber', 'EMPTY')
688 if Options
.options
.with_ads
== False:
696 if not conf
.CONFIG_SET('HAVE_ENCTYPE_ARCFOUR_HMAC_MD5') and \
697 not conf
.CONFIG_SET('HAVE_ENCTYPE_ARCFOUR_HMAC'):
698 Logs
.warn("arcfour-hmac-md5 encryption type not found in -lkrb5")
700 if not conf
.CONFIG_SET('HAVE_KRB5_MK_REQ_EXTENDED'):
701 Logs
.warn("krb5_mk_req_extended not found in -lkrb5")
703 if not conf
.CONFIG_SET('HAVE_KRB5_GET_HOST_REALM'):
704 Logs
.warn("krb5_get_host_realm not found in -lkrb5")
706 if not conf
.CONFIG_SET('HAVE_KRB5_FREE_HOST_REALM'):
707 Logs
.warn("krb5_free_host_realm not found in -lkrb5")
709 if not conf
.CONFIG_SET('HAVE_KRB5_FWD_TGT_CREDS'):
710 Logs
.warn("krb5_fwd_tgt_creds found in -lkrb5")
712 if not conf
.CONFIG_SET('HAVE_KRB5_GET_INIT_CREDS_OPT_ALLOC'):
713 Logs
.warn("krb5_get_init_creds_opt_alloc not found in -lkrb5")
715 if not conf
.CONFIG_SET('KRB5_CREDS_OPT_FREE_REQUIRES_CONTEXT'):
716 Logs
.warn("krb5_get_init_creds_opt_free was not found or was too old in -lkrb5")
718 if not conf
.CONFIG_SET('HAVE_KRB5_GET_RENEWED_CREDS'):
719 Logs
.warn("krb5_get_renewed_creds not found in -lkrb5")
721 if not conf
.CONFIG_SET('HAVE_KRB5_PRINCIPAL_COMPARE_ANY_REALM'):
722 Logs
.warn("krb5_principal_compare_any_realm not found in -lkrb5")
724 if not conf
.CONFIG_SET('HAVE_KRB5_C_STRING_TO_KEY') and \
725 not conf
.CONFIG_SET('HAVE_KRB5_STRING_TO_KEY_SALT'):
726 Logs
.warn("krb5_c_string_to_key not found in -lkrb5")
728 if not conf
.CONFIG_SET('HAVE_KRB5_PRINCIPAL2SALT') and \
729 not conf
.CONFIG_SET('HAVE_KRB5_GET_PW_SALT'):
730 Logs
.warn("no CREATE_KEY_FUNCTIONS detected")
732 if not conf
.CONFIG_SET('HAVE_KRB5_GET_PERMITTED_ENCTYPES') and \
733 not conf
.CONFIG_SET('HAVE_KRB5_GET_DEFAULT_IN_TKT_ETYPES'):
734 Logs
.warn("no GET_ENCTYPES_FUNCTIONS detected")
736 if not conf
.CONFIG_SET('HAVE_KRB5_KT_FREE_ENTRY') and \
737 not conf
.CONFIG_SET('HAVE_KRB5_FREE_KEYTAB_ENTRY_CONTENTS'):
738 Logs
.warn("no KT_FREE_FUNCTION detected")
740 if not conf
.CONFIG_SET('HAVE_KRB5_C_VERIFY_CHECKSUM'):
741 Logs
.warn("krb5_c_verify_checksum_compare not found in -lkrb5")
744 # We don't actually use
745 # gsskrb5_extract_authz_data_from_sec_context, but it is a
746 # clue that this Heimdal, which does the PAC processing we
747 # need on the standard gss_inquire_sec_context_by_oid
748 if not conf
.CONFIG_SET('HAVE_GSS_GET_NAME_ATTRIBUTE') and \
749 not (conf
.CONFIG_SET('HAVE_GSSKRB5_EXTRACT_AUTHZ_DATA_FROM_SEC_CONTEXT') and \
750 conf
.CONFIG_SET('HAVE_GSS_INQUIRE_SEC_CONTEXT_BY_OID')):
751 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")
754 if not conf
.CONFIG_SET('HAVE_GSS_KRB5_EXPORT_LUCID_SEC_CONTEXT'):
755 Logs
.warn("need gss_krb5_export_lucid_sec_context for SPNEGO and gss_wrap support")
759 conf
.DEFINE('HAVE_KRB5', '1')
760 conf
.env
['HAVE_KRB5'] = '1'
762 conf
.undefine('HAVE_KRB5_H')
763 conf
.undefine('HAVE_GSSAPI_H')
764 conf
.undefine('HAVE_GSSAPI_GSSAPI_GENERIC_H')
765 conf
.undefine('HAVE_GSSAPI_GSSAPI_H')
768 if not conf
.CONFIG_SET('HAVE_LDAP'):
773 conf
.DEFINE('WITH_ADS', '1')
774 conf
.env
['HAVE_ADS'] = '1'
775 Logs
.info("Building with Active Directory support.")
776 elif Options
.options
.with_ads
== False:
777 Logs
.info("Building without Active Directory support (--without-ads).")
780 Logs
.warn("Active Directory support not available: krb5 libs don't have all required features")
782 Logs
.warn("Active Directory support not available: LDAP support is not available.")
783 if Options
.options
.with_ads
:
784 conf
.fatal("Active Directory support not found. Use --without-ads "
785 "for building without Active Directory support. "
786 "ADS support improves communication with "
787 "Active Directory domain controllers.")
789 # this is the auto-mode case
790 Logs
.warn("Building without Active Directory support.")
793 if Options
.options
.with_utmp
:
794 conf
.env
.with_utmp
= True
795 if not conf
.CHECK_HEADERS('utmp.h'): conf
.env
.with_utmp
= False
796 conf
.CHECK_FUNCS('pututline pututxline updwtmp updwtmpx getutmpx getutxent')
797 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_name', headers
='utmp.h',
798 define
='HAVE_UT_UT_NAME')
799 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_user', headers
='utmp.h',
800 define
='HAVE_UT_UT_USER')
801 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_id', headers
='utmp.h',
802 define
='HAVE_UT_UT_ID')
803 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_host', headers
='utmp.h',
804 define
='HAVE_UT_UT_HOST')
805 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_time', headers
='utmp.h',
806 define
='HAVE_UT_UT_TIME')
807 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_tv', headers
='utmp.h',
808 define
='HAVE_UT_UT_TV')
809 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_type', headers
='utmp.h',
810 define
='HAVE_UT_UT_TYPE')
811 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_pid', headers
='utmp.h',
812 define
='HAVE_UT_UT_PID')
813 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_exit.e_exit', headers
='utmp.h',
814 define
='HAVE_UT_UT_EXIT')
815 conf
.CHECK_STRUCTURE_MEMBER('struct utmpx', 'ut_syslen', headers
='utmpx.h',
816 define
='HAVE_UX_UT_SYSLEN')
817 conf
.CHECK_CODE('struct utmp utarg; struct utmp *utreturn; utreturn = pututline(&utarg);',
818 'PUTUTLINE_RETURNS_UTMP', headers
='utmp.h',
819 msg
="Checking whether pututline returns pointer")
820 conf
.CHECK_SIZEOF(['((struct utmp *)NULL)->ut_line'], headers
='utmp.h',
821 define
='SIZEOF_UTMP_UT_LINE', critical
=False)
822 if not conf
.CONFIG_SET('SIZEOF_UTMP_UT_LINE'):
823 conf
.env
.with_utmp
= False
824 elif int(conf
.env
.SIZEOF_UTMP_UT_LINE
) < 15:
825 conf
.env
.with_utmp
= False
826 if conf
.env
.with_utmp
:
827 conf
.DEFINE('WITH_UTMP', 1)
829 Logs
.warn("--with-utmp but utmp support not sufficient")
831 if Options
.options
.with_avahi
:
832 conf
.env
.with_avahi
= True
833 if not conf
.CHECK_HEADERS('avahi-common/watch.h avahi-client/client.h'): conf
.env
.with_avahi
= False
834 if not conf
.CHECK_FUNCS_IN('avahi_client_new', 'avahi-client'): conf
.env
.with_avahi
= False
835 if not conf
.CHECK_FUNCS_IN('avahi_strerror', 'avahi-common'): conf
.env
.with_avahi
= False
836 if conf
.env
.with_avahi
:
837 conf
.DEFINE('WITH_AVAHI_SUPPORT', 1)
839 conf
.SET_TARGET_TYPE('avahi-common', 'EMPTY')
840 conf
.SET_TARGET_TYPE('avahi-client', 'EMPTY')
842 if Options
.options
.with_iconv
:
843 conf
.env
.with_iconv
= True
844 if not conf
.CHECK_FUNCS_IN('iconv_open', 'iconv', headers
='iconv.h'):
845 conf
.env
.with_iconv
= False
846 if conf
.env
.with_iconv
:
847 conf
.DEFINE('HAVE_ICONV', 1)
849 if Options
.options
.with_pam
:
851 conf
.CHECK_HEADERS('security/pam_appl.h pam/pam_appl.h')
852 if not conf
.CONFIG_SET('HAVE_SECURITY_PAM_APPL_H') and not conf
.CONFIG_SET('HAVE_PAM_PAM_APPL_H'):
853 Logs
.warn("--with-pam=yes but pam_appl.h not found")
855 conf
.CHECK_FUNCS_IN('pam_get_data', 'pam')
856 conf
.CHECK_HEADERS('security/pam_modules.h pam/pam_modules.h')
857 if not conf
.CONFIG_SET('HAVE_SECURITY_PAM_MODULES_H') and not conf
.CONFIG_SET('HAVE_PAM_PAM_MODULES_H'):
858 Logs
.warn("--with-pam=yes but pam_modules.h not found")
860 conf
.CHECK_HEADERS('security/pam_ext.h security/_pam_macros.h')
861 conf
.CHECK_HEADERS('pam/pam_ext.h pam/_pam_macros.h')
862 conf
.CHECK_FUNCS_IN('pam_vsyslog', 'pam')
864 #if defined(HAVE_SECURITY_PAM_APPL_H)
865 #include <security/pam_appl.h>
866 #elif defined(HAVE_PAM_PAM_APPL_H)
867 #include <pam/pam_appl.h>
869 pam_set_item(0, PAM_RHOST, 0);
873 msg
="Checking whether PAM_RHOST is available");
875 #if defined(HAVE_SECURITY_PAM_APPL_H)
876 #include <security/pam_appl.h>
877 #elif defined(HAVE_PAM_PAM_APPL_H)
878 #include <pam/pam_appl.h>
880 pam_set_item(0, PAM_TTY, 0);
884 msg
="Checking whether PAM_TTY is available");
886 #if (!defined(LINUX))
888 #define PAM_EXTERN extern
889 #if defined(HAVE_SECURITY_PAM_APPL_H)
890 #include <security/pam_appl.h>
891 #elif defined(HAVE_PAM_PAM_APPL_H)
892 #include <pam/pam_appl.h>
897 #if defined(HAVE_SECURITY_PAM_MODULES_H)
898 #include <security/pam_modules.h>
899 #elif defined(HAVE_PAM_PAM_MODULES_H)
900 #include <pam/pam_modules.h>
903 #if defined(HAVE_SECURITY__PAM_MACROS_H)
904 #include <security/_pam_macros.h>
905 #elif defined(HAVE_PAM__PAM_MACROS_H)
906 #include <pam/_pam_macros.h>
909 #ifdef HAVE_SECURITY_PAM_EXT_H
910 #include <security/pam_ext.h>
913 int i; i = PAM_RADIO_TYPE;
915 'HAVE_PAM_RADIO_TYPE',
917 msg
="Checking whether PAM_RADIO_TYPE is available");
919 conf
.DEFINE('WITH_PAM', 1)
920 conf
.DEFINE('WITH_PAM_MODULES', 1)
922 if Options
.options
.with_pam_smbpass
:
923 conf
.env
.with_pam_smbpass
= True
928 # Ensure we select the correct set of system calls on Linux.
930 if (host_os
.rfind('linux') > -1):
932 #if defined(HAVE_UNISTD_H)
937 #include <sys/types.h>
940 #ifdef HAVE_SYS_PRIV_H
941 #include <sys/priv.h>
947 #if defined(HAVE_SYSCALL_H)
951 #if defined(HAVE_SYS_SYSCALL_H)
952 #include <sys/syscall.h>
955 syscall(SYS_setresuid32, -1, -1, -1);
956 syscall(SYS_setresgid32, -1, -1, -1);
957 syscall(SYS_setreuid32, -1, -1);
958 syscall(SYS_setregid32, -1, -1);
959 syscall(SYS_setuid32, -1);
960 syscall(SYS_setgid32, -1);
961 syscall(SYS_setgroups32, 0, NULL);
963 'USE_LINUX_32BIT_SYSCALLS',
964 msg
="Checking whether Linux should use 32-bit credential calls");
966 if (conf
.CONFIG_SET('USE_LINUX_32BIT_SYSCALLS')):
967 seteuid
= conf
.CHECK_CODE('''
968 #define AUTOCONF_TEST 1
969 #define USE_LINUX_THREAD_CREDENTIALS 1
970 #define USE_LINUX_32BIT_SYSCALLS 1
971 #include "../lib/util/setid.c"
972 #include "./lib/util_sec.c"
974 'USE_LINUX_THREAD_CREDENTIALS',
977 msg
="Checking whether we can use Linux thread-specific credentials with 32-bit system calls")
979 seteuid
= conf
.CHECK_CODE('''
980 #define AUTOCONF_TEST 1
981 #define USE_LINUX_THREAD_CREDENTIALS 1
982 #include "../lib/util/setid.c"
983 #include "./lib/util_sec.c"
985 'USE_LINUX_THREAD_CREDENTIALS',
988 msg
="Checking whether we can use Linux thread-specific credentials")
990 seteuid
= conf
.CHECK_CODE('''
991 #define AUTOCONF_TEST 1
992 #define USE_SETREUID 1
993 #include "../lib/util/setid.c"
994 #include "./lib/util_sec.c"
999 msg
="Checking whether setreuid is available")
1001 seteuid
= conf
.CHECK_CODE('''
1002 #define AUTOCONF_TEST 1
1003 #define USE_SETRESUID 1
1004 #include "../lib/util/setid.c"
1005 #include "./lib/util_sec.c"
1010 msg
="Checking whether setresuid is available")
1012 seteuid
= conf
.CHECK_CODE('''
1013 #define AUTOCONF_TEST 1
1014 #define USE_SETEUID 1
1015 #include "../lib/util/setid.c"
1016 #include "./lib/util_sec.c"
1021 msg
="Checking whether seteuid is available")
1023 seteuid
= conf
.CHECK_CODE('''
1024 #define AUTOCONF_TEST 1
1025 #define USE_SETUIDX 1
1026 #include "../lib/util/setid.c"
1027 #include "./lib/util_sec.c"
1033 msg
="Checking whether setuidx is available")
1034 if Options
.options
.with_dnsupdate
:
1035 if not conf
.CONFIG_SET('HAVE_KRB5'):
1036 Logs
.warn("--with-dnsupdate=yes but gssapi support not sufficient")
1038 conf
.DEFINE('WITH_DNS_UPDATES', 1)
1039 conf
.CHECK_HEADERS('valgrind.h valgrind/valgrind.h valgrind/memcheck.h')
1040 if Options
.options
.developer
:
1041 if conf
.CONFIG_SET('HAVE_VALGRIND_H') or conf
.CONFIG_SET('HAVE_VALGRIND_VALGRIND_H'):
1042 conf
.DEFINE('VALGRIND', '1')
1044 if conf
.CHECK_CODE('''
1045 #include <bits/sockaddr.h>
1046 #include <linux/netlink.h>
1048 'HAVE_LINUX_NETLINK_H',
1049 msg
="Checking whether Linux netlink is available"):
1052 #include <bits/sockaddr.h>
1053 #include <linux/netlink.h>
1054 #include <linux/rtnetlink.h>
1056 'HAVE_LINUX_RTNETLINK_H',
1057 msg
='Checking whether Linux rtnetlink is available')
1060 #include "../tests/fcntl_lock.c"
1065 msg
='Checking whether fcntl locking is available')
1067 # glibc up to 2.3.6 had dangerously broken posix_fallocate(). DON'T USE IT.
1068 if not conf
.CHECK_CODE('''
1069 #define _XOPEN_SOURCE 600
1071 #if defined(__GLIBC__) && ((__GLIBC__ < 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 4))
1072 #error probably broken posix_fallocate
1075 '_HAVE_UNBROKEN_POSIX_FALLOCATE',
1076 msg
='Checking for broken posix_fallocate'):
1077 conf
.DEFINE('HAVE_BROKEN_POSIX_FALLOCATE', '1')
1080 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtim.tv_nsec',
1081 define
='HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC') # Linux, Solaris
1082 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtimensec',
1083 define
='HAVE_STRUCT_STAT_ST_MTIMENSEC') # BSD, if defined _POSIX_SOURCE
1084 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtimespec.tv_nsec',
1085 define
='HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC') # BSD, if not defined _POSIX_SOURCE
1086 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtime_n',
1087 define
='HAVE_STRUCT_STAT_ST_MTIME_N') # AIX
1088 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_umtime',
1089 define
='HAVE_STRUCT_STAT_ST_UMTIME') # Tru64
1090 if conf
.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC') or \
1091 conf
.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIMENSEC') or \
1092 conf
.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC') or \
1093 conf
.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIME_N') or \
1094 conf
.CONFIG_SET('HAVE_STRUCT_STAT_ST_UMTIME'):
1095 conf
.DEFINE('HAVE_STAT_HIRES_TIMESTAMPS', '1')
1097 # recent FreeBSD, NetBSD have creation timestamps called birthtime:
1098 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtime',
1099 define
='HAVE_STRUCT_STAT_ST_BIRTHTIME')
1100 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtimespec.tv_nsec',
1101 define
='HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC')
1102 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtimensec',
1103 define
='HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC')
1106 ssize_t err = posix_fadvise(0,0,0x80000,POSIX_FADV_WILLNEED);
1108 'HAVE_POSIX_FADVISE',
1109 msg
='Checking whether posix_fadvise is available',
1110 headers
='unistd.h fcntl.h')
1112 for v
in ['_SC_NGROUPS_MAX', '_SC_NPROC_ONLN', '_SC_NPROCESSORS_ONLN', '_SC_PAGESIZE' ]:
1115 return sysconf(%s) == -1 ? 1 : 0;
1118 msg
='Checking whether sysconf(%s) is available' % v
)
1121 #include <sys/syscall.h>
1123 syscall(SYS_initgroups, 16, NULL, NULL, 0);
1125 'HAVE_DARWIN_INITGROUPS',
1126 msg
='Checking whether to use the Darwin-specific initgroups system call')
1128 conf
.CHECK_CODE('''struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));''',
1130 headers
='sys/types.h utime.h',
1131 msg
='Checking whether struct utimbuf is available')
1133 if conf
.CHECK_CODE('''struct sigevent s;''',
1134 'HAVE_STRUCT_SIGEVENT',
1135 headers
='sys/types.h stdlib.h stddef.h signal.h',
1136 msg
='Checking whether we have the struct sigevent'):
1137 conf
.CHECK_STRUCTURE_MEMBER('struct sigevent', 'sigev_value.sival_ptr',
1138 define
='HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR',
1139 headers
='signal.h');
1140 conf
.CHECK_STRUCTURE_MEMBER('struct sigevent', 'sigev_value.sigval_ptr',
1141 define
='HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIGVAL_PTR',
1142 headers
='signal.h');
1144 if os
.path
.exists('/proc/sys/kernel/core_pattern'):
1145 conf
.DEFINE('HAVE_SYS_KERNEL_PROC_CORE_PATTERN', '1')
1147 if conf
.CHECK_CODE('''
1151 if (sizeof(time_t) == 8) {
1152 time_t max_time = 0x7fffffffffffffffll;
1153 tm = gmtime(&max_time);
1154 /* This should fail with 32-bit tm_year. */
1156 /* Max time_t that works with 32-bit int tm_year in struct tm. */
1157 max_time = 67768036191676799ll;
1158 tm = gmtime(&max_time);
1169 msg
="Checking for the maximum value of the 'time_t' type"):
1170 conf
.DEFINE('TIME_T_MAX', '67768036191676799ll')
1173 #if defined(HAVE_UNISTD_H)
1176 #include <sys/types.h>
1177 main() { dev_t dev = makedev(1,2); return 0; }
1181 msg
='Checking whether the macro for makedev is available')
1188 void exit_on_core(int ignored) {
1194 signal(SIGSEGV, exit_on_core);
1195 newpath = realpath("/tmp", NULL);
1196 exit((newpath != NULL) ? 0 : 1);
1199 'REALPATH_TAKES_NULL',
1202 msg
='Checking whether the realpath function allows a NULL argument')
1204 conf
.CHECK_CODE('''#include "../tests/ftruncate.c"''',
1205 'HAVE_FTRUNCATE_EXTEND',
1206 msg
='Checking for ftruncate extend',
1210 if Options
.options
.with_sendfile_support
:
1211 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):
1216 ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
1219 headers
='sys/sendfile.h',
1220 msg
='Checking for linux sendfile support')
1222 if conf
.CONFIG_SET('_HAVE_SENDFILE'):
1223 conf
.DEFINE('HAVE_SENDFILE', '1')
1224 conf
.DEFINE('LINUX_SENDFILE_API', '1')
1225 conf
.DEFINE('WITH_SENDFILE', '1')
1226 elif (host_os
.rfind('freebsd') > -1) or (host_os
.rfind('dragonfly') > -1):
1228 #include <sys/types.h>
1230 #include <sys/socket.h>
1231 #include <sys/uio.h>
1232 int fromfd, tofd, ret, total=0;
1233 off_t offset, nwritten;
1236 hdr.headers = &hdtrl;
1238 hdr.trailers = NULL;
1240 hdtrl.iov_base = NULL;
1242 ret = sendfile(fromfd, tofd, offset, total, &hdr, &nwritten, 0)
1245 msg
='Checking for freebsd sendfile support')
1246 if conf
.CONFIG_SET('_HAVE_SENDFILE'):
1247 conf
.DEFINE('HAVE_SENDFILE', '1')
1248 conf
.DEFINE('FREEBSD_SENDFILE_API', '1')
1249 conf
.DEFINE('WITH_SENDFILE', '1')
1250 elif (host_os
.rfind('darwin') > -1):
1252 #include <sys/types.h>
1253 #include <sys/socket.h>
1254 #include <sys/uio.h>
1255 int fromfd, tofd, ret;
1256 off_t offset, nwritten;
1259 hdr.headers = &hdtrl;
1261 hdr.trailers = (void *)0;
1263 hdtrl.iov_base = (void *)0;
1265 ret = sendfile(fromfd, tofd, offset, &nwritten, &hdr, 0);
1268 msg
='Checking for darwin sendfile support')
1269 if conf
.CONFIG_SET('_HAVE_SENDFILE'):
1270 conf
.DEFINE('HAVE_SENDFILE', '1')
1271 conf
.DEFINE('DARWIN_SENDFILE_API', '1')
1272 conf
.DEFINE('WITH_SENDFILE', '1')
1273 elif (host_os
.rfind('hpux') > -1) or (host_os
.rfind('osf') > -1):
1275 #include <sys/socket.h>
1276 #include <sys/uio.h>
1279 struct iovec hdtrl[2];
1282 hdtrl[0].iov_base = 0;
1283 hdtrl[0].iov_len = 0;
1284 nwritten = sendfile(tofd, fromfd, offset, total, &hdtrl[0], 0);
1287 msg
='Checking for osf/hpux sendfile support')
1288 if conf
.CONFIG_SET('_HAVE_SENDFILE'):
1289 conf
.DEFINE('HAVE_SENDFILE', '1')
1290 conf
.DEFINE('HPUX_SENDFILE_API', '1')
1291 conf
.DEFINE('WITH_SENDFILE', '1')
1292 elif (host_os
.rfind('solaris') > -1):
1293 conf
.CHECK_FUNCS_IN('sendfile', 'sendfilev')
1295 #include <sys/sendfile.h>,
1298 struct sendfilevec vec[2];
1302 vec[0].sfv_fd = SFV_FD_SELF;
1303 vec[0].sfv_flag = 0;
1307 vec[1].sfv_flag = 0;
1310 nwritten = sendfilev(tofd, vec, sfvcnt, &xferred);
1313 msg
='Checking for solaris sendfilev support')
1314 if conf
.CONFIG_SET('_HAVE_SENDFILEV'):
1315 conf
.DEFINE('HAVE_SENDFILEV', '1')
1316 conf
.DEFINE('SOLARIS_SENDFILE_API', '1')
1317 conf
.DEFINE('WITH_SENDFILE', '1')
1318 elif (host_os
.rfind('aix') > -1):
1320 #include <sys/socket.h>
1323 struct sf_parms hdtrl;
1325 hdtrl.header_data = 0;
1326 hdtrl.header_length = 0;
1327 hdtrl.file_descriptor = fromfd;
1328 hdtrl.file_offset = 0;
1329 hdtrl.file_bytes = 0;
1330 hdtrl.trailer_data = 0;
1331 hdtrl.trailer_length = 0;
1332 nwritten = send_file(&tofd, &hdtrl, 0);
1335 msg
='Checking for AIX send_file support')
1336 if conf
.CONFIG_SET('_HAVE_SENDFILE'):
1337 conf
.DEFINE('HAVE_SENDFILE', '1')
1338 conf
.DEFINE('AIX_SENDFILE_API', '1')
1339 conf
.DEFINE('WITH_SENDFILE', '1')
1341 # Check for getcwd allowing a NULL arg.
1345 char *s = getcwd(NULL,0);
1346 exit(s != NULL ? 0 : 1);
1347 }''', 'GETCWD_TAKES_NULL', addmain
=False, execute
=True,
1348 msg
="getcwd takes a NULL argument")
1351 # UnixWare 7.x has its getspnam in -lgen
1352 conf
.CHECK_FUNCS_IN('getspnam', 'gen')
1353 conf
.CHECK_FUNCS_IN('getspnam', 'security')
1354 conf
.CHECK_FUNCS_IN('getspnam', 'sec')
1356 if Options
.options
.with_quotas
:
1357 # For quotas on Veritas VxFS filesystems
1358 conf
.CHECK_HEADERS('sys/fs/vx_quota.h')
1359 # For sys/quota.h and linux/quota.h
1360 conf
.CHECK_HEADERS('sys/quota.h')
1361 # For quotas on BSD systems
1362 conf
.CHECK_HEADERS('ufs/ufs/quota.h')
1363 # For quotas on Linux XFS filesystems
1364 if conf
.CHECK_HEADERS('xfs/xqm.h'):
1365 conf
.DEFINE('HAVE_XFS_QUOTAS', '1')
1369 #include "confdefs.h"
1370 #ifdef HAVE_SYS_TYPES_H
1371 #include <sys/types.h>
1373 #ifdef HAVE_ASM_TYPES_H
1374 #include <asm/types.h>
1376 #include <sys/quota.h>
1377 int i = Q_XGETQUOTA;''',
1378 define
='HAVE_XFS_QUOTAS',
1379 msg
='for XFS QUOTA in <sys/quota.h>',
1381 local_include
=False)
1383 # For IRIX like dqb_isoftlimit instead of dqb_fsoftlimit in struc dqblk
1384 conf
.CHECK_STRUCTURE_MEMBER('struct dqblk', 'dqb_fsoftlimit', define
='HAVE_DQB_FSOFTLIMIT',
1385 headers
='sys/quota.h')
1386 #darwin style quota bytecount
1387 conf
.CHECK_STRUCTURE_MEMBER('struct dqblk', 'dqb_curbytes', define
='HAVE_STRUCT_DQBLK_DQB_CURBYTES',
1388 headers
='sys/quota.h')
1389 if conf
.CHECK_HEADERS('rpcsvc/rquota.h'):
1390 conf
.DEFINE('HAVE_NFS_QUOTAS', '1')
1391 conf
.CHECK_STRUCTURE_MEMBER('struct getquota_rslt', 'getquota_rslt_u',
1392 define
='HAVE_GETQUOTA_RSLT_GETQUOTA_RSLT_U',
1393 headers
='rpcsvc/rquota.h')
1395 if (host_os
.rfind('linux') > -1):
1396 conf
.DEFINE('HAVE_QUOTACTL_LINUX', '1')
1397 elif not conf
.CONFIG_SET("HAVE_XFS_QUOTAS"):
1398 if not conf
.CHECK_CODE('''
1399 #define HAVE_QUOTACTL_4A 1
1400 #define AUTOCONF_TEST 1
1401 #include "../tests/sysquotas.c"
1403 cflags
=conf
.env
['WERROR_CFLAGS'],
1404 define
='HAVE_QUOTACTL_4A',
1405 msg
='for QUOTACTL_4A: long quotactl(int cmd, char *special, qid_t id, caddr_t addr)',
1410 #define HAVE_QUOTACTL_4B 1
1411 #define AUTOCONF_TEST 1
1412 #include "../tests/sysquotas.c"
1414 cflags
=conf
.env
['WERROR_CFLAGS'],
1415 define
='HAVE_QUOTACTL_4B',
1416 msg
='for QUOTACTL_4B: int quotactl(const char *path, int cmd, int id, char *addr)',
1421 clnt_create("", RQUOTAPROG, RQUOTAVERS, "udp");
1423 headers
="rpc/rpc.h rpc/types.h rpcsvc/rquota.h rpc/nettype.h rpc/xdr.h",
1424 define
='HAVE_NFS_QUOTAS',
1425 msg
='for NFS QUOTAS',
1427 local_include
=False)
1429 if conf
.CONFIG_SET('HAVE_QUOTACTL_LINUX') or \
1430 conf
.CONFIG_SET('HAVE_QUOTACTL_4A') or \
1431 conf
.CONFIG_SET('HAVE_QUOTACTL_4B') or \
1432 conf
.CONFIG_SET('HAVE_XFS_QUOTAS'):
1433 conf
.DEFINE('HAVE_SYS_QUOTAS', '1')
1434 conf
.DEFINE('WITH_QUOTAS', '1')
1437 # checking for clustering extensions (CTDB)
1439 if Options
.options
.with_cluster_support
== False:
1440 # configure is called with --without-cluster-support,
1441 # so don't check for and build w/o ctdb support.
1442 have_cluster_support
= False
1446 have_cluster_support
= True
1450 srcdir
= os
.path
.realpath(conf
.srcdir
)
1451 if 'EXTRA_INCLUDES' in conf
.env
:
1452 includes
= ' '.join(conf
.env
['EXTRA_INCLUDES']).replace('#', srcdir
+ '/')
1456 if Options
.options
.ctdb_dir
:
1457 CTDB_INCLUDE
= Options
.options
.ctdb_dir
+ '/include'
1459 CTDB_INCLUDE
= conf
.srcdir
+ '/ctdb/include'
1460 includes
= includes
+ ' ' + CTDB_INCLUDE
1462 if not conf
.env
.USING_SYSTEM_TDB
:
1463 includes
= includes
+ ' ' + srcdir
+ '/lib/tdb/include'
1465 if not conf
.env
.USING_SYSTEM_TALLOC
:
1466 includes
= includes
+ ' ' + srcdir
+ '/lib/talloc'
1468 ok
= conf
.CHECK_CODE('''
1470 #include "replace.h"
1471 #include "system/wait.h"
1472 #include "system/network.h"
1473 #define private #error __USED_RESERVED_WORD_private__
1483 'HAVE_CTDB_CHECK_CODE',
1486 msg
='Checking for header ctdb.h')
1488 CTDB_CFLAGS
+= ' -DHAVE_CTDB_H=1'
1490 have_cluster_support
= False
1491 ctdb_broken
= "ctdb.h is required for cluster support"
1493 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1494 if have_cluster_support
:
1495 ok
= conf
.CHECK_CODE('''
1497 #include "replace.h"
1498 #include "system/wait.h"
1499 #include "system/network.h"
1500 #define private #error __USED_RESERVED_WORD_private__
1504 #include <ctdb_private.h>
1511 'HAVE_CTDB_CHECK_CODE',
1514 msg
='Checking for header ctdb_private.h')
1516 CTDB_CFLAGS
+= ' -DHAVE_CTDB_PRIVATE_H=1'
1518 have_cluster_support
= False
1519 ctdb_broken
= "ctdb_private.h is required for cluster support"
1521 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1522 if have_cluster_support
:
1523 ok
= conf
.CHECK_CODE('''
1525 #include "replace.h"
1526 #include "system/wait.h"
1527 #include "system/network.h"
1528 #define private #error __USED_RESERVED_WORD_private__
1532 #include <ctdb_protocol.h>
1539 'HAVE_CTDB_CHECK_CODE',
1542 msg
='Checking for header ctdb_protocol.h')
1544 CTDB_CFLAGS
+= ' -DHAVE_CTDB_PROTOCOL_H=1'
1546 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1547 if have_cluster_support
:
1548 ok
= conf
.CHECK_CODE('''
1550 #include "replace.h"
1551 #include "system/wait.h"
1552 #include "system/network.h"
1556 #include <ctdb_private.h>
1560 int i = (int)CTDB_CONTROL_TRANS3_COMMIT;
1564 'HAVE_CTDB_CHECK_CODE',
1567 msg
='Checking for transaction support (TRANS3_COMMIT control)')
1569 CTDB_CFLAGS
+= ' -DHAVE_CTDB_CONTROL_TRANS3_COMMIT_DECL=1'
1571 have_cluster_support
= False
1572 ctdb_broken
= "ctdb transaction support missing or too old"
1574 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1575 if have_cluster_support
:
1576 ok
= conf
.CHECK_CODE('''
1578 #include "replace.h"
1579 #include "system/wait.h"
1580 #include "system/network.h"
1584 #include <ctdb_private.h>
1588 int i = (int)CTDB_CONTROL_SCHEDULE_FOR_DELETION;
1592 'HAVE_CTDB_CHECK_CODE',
1595 msg
='Checking for SCHEDULE_FOR_DELETION control')
1597 CTDB_CFLAGS
+= ' -DHAVE_CTDB_CONTROL_SCHEDULE_FOR_DELETION_DECL=1'
1599 if not Options
.options
.enable_old_ctdb
:
1600 have_cluster_support
= False
1601 ctdb_broken
= "SCHEDULE_FOR_DELETION control missing"
1603 Logs
.warn("ignoring missing SCHEDULE_FOR_DELETION control (--enable-old-ctdb)")
1605 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1606 if have_cluster_support
:
1607 ok
= conf
.CHECK_CODE('''
1609 #include "replace.h"
1610 #include "system/wait.h"
1611 #include "system/network.h"
1618 int i = (int)CTDB_WANT_READONLY;
1622 'HAVE_CTDB_CHECK_CODE',
1625 msg
='Checking for CTDB readonly records support')
1627 CTDB_CFLAGS
+= ' -DHAVE_CTDB_WANT_READONLY_DECL=1'
1629 if not Options
.options
.enable_old_ctdb
:
1630 have_cluster_support
= False
1631 ctdb_broken
= "support for CTDB readonly records missing"
1633 Logs
.warn("ignoring missing READONLY support (--enable-old-ctdb)")
1635 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1636 if have_cluster_support
:
1637 ok
= conf
.CHECK_CODE('''
1639 #include "replace.h"
1640 #include "system/wait.h"
1641 #include "system/network.h"
1645 #include <ctdb_private.h>
1649 struct ctdb_control_tcp _x;
1653 'HAVE_CTDB_CHECK_CODE',
1656 msg
='Checking for ctdb ipv4 support')
1658 CTDB_CFLAGS
+= ' -DHAVE_STRUCT_CTDB_CONTROL_TCP=1'
1660 have_cluster_support
= False
1661 ctdb_broken
= "missing struct ctdb_control_tcp"
1663 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1664 if have_cluster_support
:
1665 ok
= conf
.CHECK_CODE('''
1667 #include "replace.h"
1668 #include "system/wait.h"
1669 #include "system/network.h"
1673 #include <ctdb_private.h>
1677 struct ctdb_control_tcp_addr _x;
1681 'HAVE_CTDB_CHECK_CODE',
1684 msg
='Checking for ctdb ipv6 support')
1686 CTDB_CFLAGS
+= ' -DHAVE_STRUCT_CTDB_CONTROL_TCP_ADDR=1'
1688 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1689 if have_cluster_support
:
1690 ok
= conf
.CHECK_CODE('''
1692 #include "replace.h"
1693 #include "system/wait.h"
1694 #include "system/network.h"
1698 #include <ctdb_private.h>
1702 int i = (int)CTDB_CONTROL_CHECK_SRVIDS;
1706 'HAVE_CTDB_CHECK_CODE',
1709 msg
='Checking for CHECK_SRVIDS control')
1711 CTDB_CFLAGS
+= ' -DHAVE_CTDB_CONTROL_CHECK_SRVIDS_DECL=1'
1713 if not Options
.options
.enable_old_ctdb
:
1714 have_cluster_support
= False
1715 ctdb_broken
= "CHECK_SRVIDS control missing"
1717 Logs
.warn("ignoring missing CHECK_SRVIDS control (--enable-old-ctdb)")
1719 conf
.CONFIG_RESET('HAVE_CTDB_CHECK_CODE')
1720 conf
.undefine('HAVE_CTDB_CHECK_CODE')
1721 if have_cluster_support
:
1722 Logs
.info("building with cluster support")
1723 conf
.env
['CTDB_CFLAGS'] = CTDB_CFLAGS
1724 conf
.env
['CTDB_INCLUDE'] = CTDB_INCLUDE
1726 if Options
.options
.with_cluster_support
== False:
1727 Logs
.info("building without cluster support (--without-cluster-support)")
1728 elif Options
.options
.with_cluster_support
== True:
1729 Logs
.error("Cluster support not available: " + ctdb_broken
)
1730 conf
.fatal("Cluster support not found, but --with-cluster-support was specified")
1732 Logs
.info("building without cluster support: " + ctdb_broken
)
1733 conf
.env
['CTDB_CFLAGS'] = ''
1736 conf
.CHECK_CODE('__attribute__((destructor)) static void cleanup(void) { }',
1737 'HAVE_FUNCTION_ATTRIBUTE_DESTRUCTOR',
1740 msg
='Checking whether we can compile with __attribute__((destructor))')
1742 conf
.CHECK_CODE('void seekdir(DIR *d, long loc) { return; }',
1743 'SEEKDIR_RETURNS_VOID',
1744 headers
='sys/types.h dirent.h',
1745 msg
='Checking whether seekdir returns void')
1747 if Options
.options
.with_profiling_data
:
1748 conf
.DEFINE('WITH_PROFILE', 1);
1750 if Options
.options
.with_pthreadpool
:
1751 if conf
.CONFIG_SET('HAVE_PTHREAD'):
1752 conf
.DEFINE('WITH_PTHREADPOOL', '1')
1754 Logs
.warn("pthreadpool support cannot be enabled when pthread support was not found")
1755 conf
.undefine('WITH_PTHREADPOOL')
1757 if conf
.CHECK_HEADERS('gpfs_gpl.h'):
1758 conf
.DEFINE('HAVE_GPFS', '1')
1760 if (conf
.CHECK_HEADERS('linux/ioctl.h sys/ioctl.h linux/fs.h') and
1761 conf
.CHECK_DECLS('FS_IOC_GETFLAGS FS_COMPR_FL', headers
='linux/fs.h')):
1762 conf
.DEFINE('HAVE_LINUX_IOCTL', '1')
1764 conf
.env
['CCFLAGS_CEPHFS'] = "-D_FILE_OFFSET_BITS=64"
1765 if Options
.options
.libcephfs_dir
:
1766 conf
.env
['CPPPATH_CEPHFS'] = Options
.options
.libcephfs_dir
+ '/include'
1767 conf
.env
['LIBPATH_CEPHFS'] = Options
.options
.libcephfs_dir
+ '/lib'
1769 if conf
.CHECK_HEADERS('cephfs/libcephfs.h', False, False, 'cephfs') and conf
.CHECK_LIB('cephfs'):
1770 conf
.DEFINE('HAVE_CEPH', '1')
1772 if Options
.options
.with_glusterfs
:
1773 conf
.check_cfg(package
='glusterfs-api', args
='"glusterfs-api >= 4" --cflags --libs',
1774 msg
='Checking for glusterfs-api >= 4', uselib_store
="GFAPI")
1775 conf
.CHECK_HEADERS('api/glfs.h', lib
='gfapi')
1776 conf
.CHECK_LIB('gfapi', shlib
=True)
1778 if conf
.CONFIG_SET('HAVE_API_GLFS_H'):
1779 conf
.DEFINE('HAVE_GLUSTERFS', '1')
1781 conf
.SET_TARGET_TYPE('gfapi', 'EMPTY')
1782 conf
.undefine('HAVE_GLUSTERFS')
1784 conf
.SET_TARGET_TYPE('gfapi', 'EMPTY')
1785 conf
.undefine('HAVE_GLUSTERFS')
1787 conf
.env
.build_regedit
= False
1788 if not Options
.options
.with_regedit
== False:
1789 conf
.PROCESS_SEPARATE_RULE('system_ncurses')
1790 if conf
.CONFIG_SET('HAVE_NCURSES'):
1791 conf
.env
.build_regedit
= True
1793 if conf
.env
.build_regedit
:
1794 Logs
.info("building regedit")
1796 if Options
.options
.with_regedit
== False:
1797 Logs
.info("not building regedit (--without-regedit)")
1798 elif Options
.options
.with_regedit
== True:
1799 Logs
.error("ncurses not available, cannot build regedit")
1800 conf
.fatal("ncurses not available, but --with-regedit was specified")
1802 Logs
.info("ncurses not available, not building regedit")
1804 conf
.CHECK_FUNCS_IN('DES_pcbc_encrypt', 'crypto')
1805 if Options
.options
.with_fake_kaserver
== True:
1806 conf
.CHECK_HEADERS('afs/param.h afs/stds.h', together
=True)
1807 conf
.CHECK_HEADERS('afs/param.h afs/stds.h', together
=True)
1808 if (conf
.CONFIG_SET('HAVE_AFS_PARAM_H') and conf
.CONFIG_SET('HAVE_AFS_STDS_H') and conf
.CONFIG_SET('HAVE_DES_PCBC_ENCRYPT')):
1809 conf
.DEFINE('WITH_FAKE_KASERVER', '1')
1811 conf
.fatal('AFS headers not available, but --with-fake-kaserver was specified')
1815 default_static_modules
.extend(TO_LIST('''pdb_smbpasswd pdb_tdbsam pdb_wbc_sam
1816 auth_sam auth_unix auth_winbind auth_wbc
1817 auth_domain auth_builtin vfs_default
1818 nss_info_template idmap_tdb idmap_passdb
1821 default_shared_modules
.extend(TO_LIST('''vfs_recycle vfs_audit vfs_extd_audit vfs_full_audit vfs_netatalk
1822 vfs_fake_perms vfs_default_quota vfs_readonly vfs_cap
1823 vfs_expand_msdfs vfs_shadow_copy vfs_shadow_copy2
1824 auth_script vfs_readahead vfs_xattr_tdb vfs_posix_eadb
1825 vfs_streams_xattr vfs_streams_depot vfs_acl_xattr vfs_acl_tdb
1826 vfs_smb_traffic_analyzer vfs_preopen vfs_catia vfs_scannedonly
1830 vfs_crossrename vfs_linux_xfs_sgid
1831 vfs_time_audit idmap_autorid idmap_tdb2
1833 idmap_rid idmap_hash idmap_rfc2307'''))
1835 if Options
.options
.developer
:
1836 default_static_modules
.extend(TO_LIST('charset_weird'))
1837 default_shared_modules
.extend(TO_LIST('perfcount_test'))
1838 default_shared_modules
.extend(TO_LIST('vfs_skel_opaque vfs_skel_transparent vfs_shadow_copy_test'))
1839 default_shared_modules
.extend(TO_LIST('auth_skel pdb_test'))
1841 if Options
.options
.enable_selftest
or Options
.options
.developer
:
1842 default_shared_modules
.extend(TO_LIST('vfs_fake_acls vfs_nfs4acl_xattr'))
1845 if conf
.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'):
1846 default_static_modules
.extend(TO_LIST('pdb_samba_dsdb auth_samba4 vfs_dfs_samba4'))
1848 if conf
.CONFIG_SET('HAVE_FREEBSD_SUNACL_H'):
1849 default_shared_modules
.extend(TO_LIST('vfs_zfsacl'))
1851 if conf
.CONFIG_SET('HAVE_DIRFD_DECL'):
1852 default_shared_modules
.extend(TO_LIST('vfs_syncops vfs_dirsort'))
1854 if conf
.CONFIG_SET('HAVE_STATFS_F_FSID'):
1855 default_shared_modules
.extend(TO_LIST('vfs_fileid'))
1857 if (conf
.CONFIG_SET('HAVE_STRUCT_MSGHDR_MSG_CONTROL') or conf
.CONFIG_SET('HAVE_STRUCT_MSGHDR_MSG_ACCTRIGHTS')):
1858 default_shared_modules
.extend(TO_LIST('vfs_aio_fork'))
1860 if Options
.options
.with_pthreadpool
:
1861 default_shared_modules
.extend(TO_LIST('vfs_aio_pthread'))
1863 if conf
.CONFIG_SET('HAVE_AIO'):
1864 default_shared_modules
.extend(TO_LIST('vfs_aio_posix'))
1866 if conf
.CONFIG_SET('HAVE_LINUX_KERNEL_AIO'):
1867 default_shared_modules
.extend(TO_LIST('vfs_aio_linux'))
1869 if conf
.CONFIG_SET('HAVE_LDAP'):
1870 default_static_modules
.extend(TO_LIST('pdb_ldapsam idmap_ldap'))
1872 if conf
.CONFIG_SET('DARWINOS'):
1873 default_static_modules
.extend(TO_LIST('charset_macosxfs'))
1875 if conf
.CONFIG_SET('HAVE_GPFS'):
1876 default_shared_modules
.extend(TO_LIST('vfs_gpfs'))
1878 if conf
.CONFIG_SET('HAVE_LINUX_IOCTL'):
1879 default_shared_modules
.extend(TO_LIST('vfs_btrfs'))
1881 if conf
.CONFIG_SET('SAMBA_FAM_LIBS'):
1882 default_shared_modules
.extend(TO_LIST('vfs_notify_fam'))
1884 if conf
.CONFIG_SET("HAVE_CEPH"):
1885 default_shared_modules
.extend(TO_LIST('vfs_ceph'))
1887 if conf
.CONFIG_SET('HAVE_GLUSTERFS'):
1888 default_shared_modules
.extend(TO_LIST('vfs_glusterfs'))
1890 explicit_shared_modules
= TO_LIST(Options
.options
.shared_modules
, delimiter
=',')
1891 explicit_static_modules
= TO_LIST(Options
.options
.static_modules
, delimiter
=',')
1893 def replace_list_item(lst
, item
, value
):
1895 idx
= lst
.index(item
)
1899 # PDB module file name should have the same name as module registers itself
1900 # In Autoconf build we export LDAP passdb module as ldapsam but WAF build
1901 # was always exporting pdb_ldap. In order to support existing packages
1902 # allow referring to pdb_ldapsam as pdb_ldap but use proper name internally.
1903 replace_list_item(explicit_shared_modules
, 'pdb_ldap', 'pdb_ldapsam')
1904 replace_list_item(explicit_static_modules
, 'pdb_ldap', 'pdb_ldapsam')
1906 final_static_modules
= default_static_modules
1907 final_shared_modules
= default_shared_modules
1909 for m
in explicit_static_modules
:
1910 if m
in final_shared_modules
:
1911 final_shared_modules
.remove(m
)
1912 final_static_modules
.append(m
)
1913 for m
in explicit_shared_modules
:
1914 if m
in final_static_modules
:
1915 final_static_modules
.remove(m
)
1916 final_shared_modules
.append(m
)
1918 if ("auth_domain" not in final_static_modules
) or \
1919 ("auth_builtin" not in final_static_modules
) or \
1920 ("auth_sam" not in final_static_modules
) or \
1921 ("auth_winbind" not in final_static_modules
):
1922 raise Utils
.WafError('These auth modules MUST be configured as static modules: auth_domain, auth_builtin, auth_sam, auth_winbind')
1924 conf
.env
['static_modules'] = final_static_modules
1925 conf
.env
['shared_modules'] = final_shared_modules
1927 conf
.DEFINE('STRING_STATIC_MODULES', ' '.join(final_static_modules
), quote
=True)
1932 prefixes
= ['vfs', 'pdb', 'auth', 'nss_info', 'charset', 'idmap', 'gpext', 'perfcount']
1933 conf
.env
['MODULE_PREFIXES'] = prefixes
1935 for m
in final_static_modules
:
1937 if not p
in static_list
:
1939 static_list
[p
].append(m
)
1940 for m
in final_shared_modules
:
1942 if not p
in shared_list
:
1944 shared_list
[p
].append(m
)
1947 static_env
= "%s_STATIC" % p
.upper()
1948 shared_env
= "%s_SHARED" % p
.upper()
1949 conf
.env
[static_env
] = []
1950 conf
.env
[shared_env
] = []
1951 if p
in static_list
:
1953 for entry
in static_list
[p
]:
1954 decl_list
+= "extern NTSTATUS %s_init(void); " % entry
1955 conf
.env
[static_env
].append('%s' % entry
)
1956 decl_list
= decl_list
.rstrip()
1957 conf
.DEFINE('static_decl_%s' % p
, decl_list
)
1958 conf
.DEFINE('static_init_%s' % p
, '{ %s_init(); }' % '_init(); '.join(static_list
[p
]))
1960 conf
.DEFINE('static_decl_%s' % p
, '')
1961 conf
.DEFINE('static_init_%s' % p
, '{}')
1962 if p
in shared_list
:
1963 for entry
in shared_list
[p
]:
1964 conf
.DEFINE('%s_init' % entry
, 'samba_init_module')
1965 conf
.env
[shared_env
].append('%s' % entry
)
1967 conf
.SAMBA_CONFIG_H('include/config.h')
1970 "build 'tags' file using ctags"
1972 source_root
= os
.path
.dirname(Utils
.g_module
.root_path
)
1973 cmd
= 'ctags $(find %s/.. -name "*.[ch]" | grep -v "*_proto\.h")' % source_root
1974 print("Running: %s" % cmd
)