waf: we don't need the preprocessor recursion limit any more
[kai/samba.git] / source3 / wscript
1 #! /usr/bin/env python
2
3 srcdir = '..'
4 blddir = 'bin'
5
6 import sys, os
7 from optparse import SUPPRESS_HELP
8 sys.path.insert(0, srcdir+"/buildtools/wafsamba")
9 import wafsamba, Options
10 import build.charset
11 import samba_utils
12 import samba3
13
14 version = wafsamba.samba_version_file("./VERSION")
15
16 VERSION=version.STRING
17
18 def set_options(opt):
19     opt.BUILTIN_DEFAULT('NONE')
20     opt.BUNDLED_EXTENSION_DEFAULT('s3')
21     opt.RECURSE('../lib/replace')
22     opt.RECURSE('build')
23     opt.RECURSE('../lib/nss_wrapper')
24     opt.RECURSE('../lib/socket_wrapper')
25     opt.RECURSE('../lib/tevent')
26     opt.RECURSE('../lib/tdb')
27
28     opt.add_option('--with-static-modules',
29                    help=("Comma-separated list of names of modules to statically link in"),
30                    action="store", dest='static_modules', default=None)
31     opt.add_option('--with-shared-modules',
32                    help=("Comma-separated list of names of modules to build shared"),
33                    action="store", dest='shared_modules', default=None)
34     opt.add_option('--enable-selftest',
35                   help=("enable options necessary for selftest"),
36                   action="store_true", dest='enable_selftest', default=False)
37
38     opt.SAMBA3_ADD_OPTION('winbind')
39     opt.SAMBA3_ADD_OPTION('swat')
40     opt.SAMBA3_ADD_OPTION('ads')
41     opt.SAMBA3_ADD_OPTION('krb5')
42     opt.SAMBA3_ADD_OPTION('ldap')
43     opt.SAMBA3_ADD_OPTION('cups', with_name="enable", without_name="disable")
44     opt.SAMBA3_ADD_OPTION('merged-build', with_name="enable", without_name="disable")
45     opt.SAMBA3_ADD_OPTION('pam')
46     opt.SAMBA3_ADD_OPTION('quotas')
47     opt.SAMBA3_ADD_OPTION('sys-quotas')
48     opt.SAMBA3_ADD_OPTION('sendfile-support')
49     opt.SAMBA3_ADD_OPTION('utmp')
50     opt.SAMBA3_ADD_OPTION('pthreadpool', with_name="enable", without_name="disable")
51     opt.SAMBA3_ADD_OPTION('avahi', with_name="enable", without_name="disable")
52     opt.SAMBA3_ADD_OPTION('iconv')
53     opt.SAMBA3_ADD_OPTION('acl-support')
54
55
56 def configure(conf):
57     from samba_utils import TO_LIST
58
59     conf.DEFINE('PACKAGE_NAME', 'Samba', quote=True)
60     conf.DEFINE('PACKAGE_STRING', 'Samba %s' % version.MAJOR, quote=True)
61     conf.DEFINE('PACKAGE_TARNAME',  'samba', quote=True)
62     conf.DEFINE('PACKAGE_URL', "", quote=True)
63     conf.DEFINE('PACKAGE_VERSION', "%s" % version.MAJOR, quote=True)
64     conf.DEFINE('PACKAGE_BUGREPORT', 'samba-technical@samba.org', quote=True)
65
66     conf.DEFINE('CONFIG_H_IS_FROM_SAMBA', 1)
67     conf.DEFINE('_SAMBA_BUILD_', version.MAJOR, add_to_cflags=True)
68     conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
69     if Options.options.developer:
70         conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD')
71         conf.env['developer'] = True
72
73     if Options.options.with_swat:
74         conf.env['build_swat'] = True
75
76     conf.ADD_EXTRA_INCLUDES('''#source3 #source3/include #lib/replace #lib/talloc
77                                #lib/tevent #source3/libaddns #source3/librpc
78                                #source3/lib #lib/tdb/include #lib/popt #source4''')
79
80     conf.RECURSE('../lib/replace')
81     conf.RECURSE('build')
82     conf.RECURSE('../lib/tdb')
83     conf.RECURSE('../lib/talloc')
84     conf.RECURSE('../lib/tevent')
85     conf.RECURSE('../lib/popt')
86     conf.RECURSE('../lib/nss_wrapper')
87     conf.RECURSE('../lib/socket_wrapper')
88     conf.RECURSE('../lib/zlib')
89
90     conf.CHECK_HEADERS('execinfo.h libexc.h libunwind.h netdb.h')
91
92     conf.CHECK_FUNCS('getcwd fchown chmod fchmod mknod mknod64')
93     conf.CHECK_FUNCS('strtol strchr strupr chflags')
94     conf.CHECK_FUNCS('getrlimit fsync fdatasync setpgid')
95     conf.CHECK_FUNCS('setsid glob strpbrk crypt16 getauthuid')
96     conf.CHECK_FUNCS('sigprocmask sigblock sigaction sigset innetgr')
97     conf.CHECK_FUNCS('initgroups select poll rdchk getgrnam getgrent pathconf')
98     conf.CHECK_FUNCS('setpriv setgidx setuidx setgroups sysconf stat64 fstat64')
99     conf.CHECK_FUNCS('lstat64 fopen64 atexit grantpt lseek64 ftruncate64 posix_fallocate posix_fallocate64')
100     conf.CHECK_FUNCS('fseek64 fseeko64 ftell64 ftello64 setluid')
101     conf.CHECK_FUNCS('getpwnam', headers='sys/types.h pwd.h')
102     conf.CHECK_FUNCS('opendir64 readdir64 seekdir64 telldir64 rewinddir64 closedir64')
103     conf.CHECK_FUNCS('getpwent_r getdents64 setenv strcasecmp fcvt fcvtl')
104     conf.CHECK_FUNCS('syslog vsyslog timegm setlocale nl_langinfo')
105     conf.CHECK_FUNCS_IN('nanosleep', 'rt')
106     conf.CHECK_FUNCS('lutimes futimes utimensat futimens')
107     conf.CHECK_FUNCS('mlock munlock mlockall munlockall')
108     conf.CHECK_FUNCS('memalign posix_memalign hstrerror')
109     conf.CHECK_FUNCS('shmget')
110     conf.CHECK_FUNCS_IN('shm_open', 'rt', checklibc=True)
111     conf.CHECK_FUNCS('gettext dgettext bindtextdomain textdomain')
112     #FIXME: for some reason this one still fails
113     conf.CHECK_FUNCS_IN('yp_get_default_domain', 'nsl')
114     conf.CHECK_FUNCS_IN('dn_expand _dn_expand __dn_expand', 'resolv')
115
116     # Check for inotify support
117     conf.CHECK_HEADERS('linux/inotify.h asm/unistd.h sys/inotify.h')
118     conf.CHECK_FUNCS('inotify_init')
119     if "HAVE_LINUX_INOTIFY_H" in conf.env and "HAVE_INOTIFY_INIT" in conf.env:
120         conf.DEFINE('HAVE_INOTIFY', 1)
121
122     # Check for kernel change notify support
123     conf.CHECK_CODE('''
124 #ifndef F_NOTIFY
125 #define F_NOTIFY 1026
126 #endif
127 main() {
128         exit(fcntl(open("/tmp", O_RDONLY), F_NOTIFY, 0) == -1 ?  1 : 0);
129 }''', 'HAVE_KERNEL_CHANGE_NOTIFY', addmain=False, execute=True,
130         headers='fcntl.h signal.h',
131         msg="Checking for kernel change notify support")
132
133     # Check for Linux kernel oplocks
134     conf.CHECK_CODE('''
135 #include <sys/types.h>
136 #include <fcntl.h>
137 #include <signal.h>
138 #ifndef F_NOTIFY
139 #define F_NOTIFY 1026
140 #endif
141 main() {
142         exit(fcntl(open("/tmp", O_RDONLY), F_NOTIFY, 0) == -1 ?  1 : 0);
143 }''', 'HAVE_KERNEL_OPLOCKS_LINUX', addmain=False, execute=True,
144         msg="Checking for Linux kernel oplocks")
145
146     # Check for IRIX kernel oplock types
147     conf.CHECK_CODE('oplock_stat_t t; t.os_state = OP_REVOKE; t.os_dev = 1; t.os_ino = 1;',
148                     'HAVE_KERNEL_OPLOCKS_IRIX', headers='fcntl.h',
149                     msg="Checking for IRIX kernel oplock types")
150
151     # Check for krenel share modes
152     conf.CHECK_CODE('''
153 #include <sys/types.h>
154 #include <fcntl.h>
155 #include <signal.h>
156 #include <sys/file.h>
157 #ifndef LOCK_MAND
158 #define LOCK_MAND       32
159 #define LOCK_READ       64
160 #endif
161 main() {
162         exit(flock(open("/dev/null", O_RDWR), LOCK_MAND|LOCK_READ) != 0);
163 }''', 'HAVE_KERNEL_SHARE_MODES', addmain=False, execute=True,
164         msg="Checking for krenel share modes")
165
166     # Check for various members of the stat structure
167     conf.CHECK_TYPES('blksize_t blkcnt_t')
168     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_blocks', define='HAVE_STAT_ST_BLOCKS',
169                                 headers='sys/stat.h')
170     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_blksize', define='HAVE_STAT_ST_BLKSIZE',
171                                 headers='sys/stat.h')
172
173     # Check for POSIX capability support
174     conf.CHECK_FUNCS_IN('cap_get_proc', 'cap', headers='sys/capability.h')
175
176     if "HAVE_SYS_CAPABILITY_H" in conf.env:
177         conf.CHECK_CODE('''
178         cap_t cap;
179         cap_value_t vals[1];
180         if (!(cap = cap_get_proc())) exit(1);
181         vals[0] = CAP_CHOWN;
182         cap_set_flag(cap, CAP_INHERITABLE, 1, vals, CAP_CLEAR);
183         cap_set_proc(cap);''',
184                         'HAVE_POSIX_CAPABILITIES', execute=True, lib="cap",
185                         headers='sys/capability.h',
186                         msg="Checking whether POSIX capabilities are available")
187
188     # Check for int16, uint16, int32 and uint32 in rpc/types.h included from
189     # rpc/rpc.h. This is *really* broken but some systems (DEC OSF1) do this.
190     # -- JRA.
191     if conf.CONFIG_SET("HAVE_RPC_RPC_H"):
192         conf.CHECK_TYPE('int16', headers='rpc/rpc.h',
193                         define='HAVE_INT16_FROM_RPC_RPC_H',
194                         msg="Checking for int16 typedef included by rpc/rpc.h")
195         conf.CHECK_CODE('uint16 testvar;', 'HAVE_INT16_FROM_RPC_RPC_H',
196                         headers='sys/types.h rpc/rpc.h',
197                         msg="Checking for uint16 typedef included by rpc/rpc.h")
198         conf.CHECK_CODE('int32 testvar;', 'HAVE_INT16_FROM_RPC_RPC_H',
199                         headers='sys/types.h rpc/rpc.h',
200                         msg="Checking for int32 typedef included by rpc/rpc.h")
201         conf.CHECK_CODE('uint32 testvar;', 'HAVE_INT16_FROM_RPC_RPC_H',
202                         headers='sys/types.h rpc/rpc.h',
203                         msg="Checking for uint32 typedef included by rpc/rpc.h")
204     conf.CHECK_CODE('int i;', 'BROKEN_NISPLUS_INCLUDE_FILES',
205                     headers='sys/types.h sys/acl.h rpcsvc/nis.h',
206                     msg="Checking for broken nisplus include files")
207
208     # Check if the compiler will optimize out functions
209     conf.CHECK_CODE('''
210 if (0) {
211     this_function_does_not_exist();
212 } else {
213     return 1;
214 }''', 'HAVE_COMPILER_WILL_OPTIMIZE_OUT_FNS',
215         msg="Checking if the compiler will optimize out functions")
216
217     # Check if the compiler supports the LL suffix on long long integers
218     # AIX needs this
219     conf.CHECK_CODE('long long i = 0x8000000000LL', 'COMPILER_SUPPORTS_LL',
220                     headers='stdio.h',
221                     msg="Checking for LL suffix on long long integers")
222
223     conf.CHECK_FUNCS('''
224 _acl __acl add_proplist_entry atexit attr_getf attr_list attr_listf
225 attropen attr_remove attr_removef attr_set attr_setf backtrace_symbols
226 bindtextdomain _chdir __chdir chflags chmod _close __close _closedir
227 __closedir closedir64 creat64 crypt16 delproplist devnm dgettext dirfd
228 DNSServiceRegister _dup __dup _dup2 __dup2 endmntent execl
229 extattr_delete_fd extattr_delete_link extattr_get_fd extattr_get_file
230 extattr_get_link extattr_list_fd extattr_list_file extattr_list_link
231 extattr_set_fd extattr_set_file extattr_set_link _facl __facl _fchdir
232 __fchdir fchmod fchown _fcntl __fcntl fcvt fcvtl fdatasync
233 fdelproplist fgetea fgetproplist fgetxattr flistea flistxattr fopen64
234 _fork __fork fremoveea fremovexattr fseek64 fseeko64 fsetea
235 fsetproplist fsetxattr _fstat __fstat fstat64 _fstat64 __fstat64 fsync
236 ftell64 ftello64 ftruncate64 futimens futimes __fxstat getauthuid
237 getcwd _getcwd __getcwd getdents __getdents getdents64 getdirentries
238 getgrent getgrnam getgrouplist getmntent getpagesize
239 getproplist get_proplist_entry getpwanam getpwent_r getrlimit gettext
240 glob grantpt hstrerror initgroups innetgr
241 inotify_init lgetea lgetxattr listea listxattr llistea llistxattr
242 llseek _llseek __llseek lremoveea lremovexattr _lseek __lseek lseek64
243 lsetea lsetxattr _lstat __lstat lstat64 _lstat64 __lstat64 lutimes
244 __lxstat memalign mknod mknod64 mlock mlockall munlock munlockall
245 nl_langinfo _open __open open64 _open64 __open64 _opendir __opendir
246 opendir64 pathconf poll posix_fallocate posix_fallocate64
247 posix_memalign prctl pread _pread __pread pread64 _pread64 __pread64
248 pwrite _pwrite __pwrite pwrite64 _pwrite64
249 __pwrite64 rdchk _read __read _readdir __readdir readdir64 _readdir64
250 __readdir64 removeea removexattr rewinddir64 _seekdir __seekdir
251 seekdir64 select setea setenv setgidx setgroups setlocale setluid
252 setmntent setpgid setpriv setproplist setsid setuidx
253 setxattr shmget shm_open sigaction sigblock sigprocmask sigset
254 sizeof_proplist_entry _stat __stat stat64 _stat64 __stat64 statvfs
255 strcasecmp strchr strpbrk strsignal strtol strupr sysconf sysctlbyname
256 __sys_llseek syslog _telldir __telldir telldir64 textdomain timegm
257 utimensat vsyslog _write __write __xstat
258 ''')
259
260     conf.CHECK_TYPE('struct timespec', headers='sys/time.h time.h')
261
262     conf.CHECK_SAMBA3_CHARSET() # see build/charset.py
263
264     # FIXME: these should be tests for features, but the old build system just
265     # checks for OSes.
266     import sys
267     host_os = sys.platform
268
269     # Python doesn't have case switches... :/
270     # FIXME: original was *linux* | gnu* | k*bsd*-gnu | kopensolaris*-gnu | *qnx*)
271     # the search for .rfind('gnu') covers gnu* and *-gnu is that too broad?
272     if (host_os.rfind('linux') > -1) or (host_os.rfind('gnu') > -1) or (host_os.rfind('qnx') > -1):
273         if host_os.rfind('linux') > -1:
274             conf.DEFINE('LINUX', '1')
275         elif host_os.rfind('qnx') > -1:
276             conf.DEFINE('QNX', '1')
277         conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
278     elif (host_os.rfind('darwin') > -1):
279         conf.DEFINE('DARWINOS', 1)
280         conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
281         conf.ADD_CFLAGS('-fno-common')
282     # FIXME: Add more checks here.
283     else:
284         print "Unknown host_os '%s', please report this to samba-technical@samba.org" % host_os
285
286     #FIXME: add more checks
287     if Options.options.with_acl_support:
288         if host_os.rfind('linux') > -1:
289             conf.CHECK_FUNCS_IN('acl_get_file', 'acl')
290             conf.CHECK_FUNCS_IN('getxattr', 'attr')
291             if conf.CHECK_CODE('''
292 acl_t acl;
293 int entry_id;
294 acl_entry_t *entry_p;
295 return acl_get_entry(acl, entry_id, entry_p);
296 ''',
297                         'HAVE_POSIX_ACLS',
298                         headers='sys/types.h sys/acl.h', link=False,
299                         msg="Checking for POSIX ACL support") :
300                 conf.CHECK_CODE('''
301 acl_permset_t permset_d;
302 acl_perm_t perm;
303 return acl_get_perm_np(permset_d, perm);
304 ''',
305                         'HAVE_ACL_GET_PERM_NP',
306                         headers='sys/types.h sys/acl.h', link=True,
307                         msg="Checking whether acl_get_perm_np() is available")
308     else:
309         conf.DEFINE('HAVE_NO_ACLS', 1)
310         conf.SET_TARGET_TYPE('acl', 'EMPTY')
311         conf.SET_TARGET_TYPE('attr', 'EMPTY')
312
313
314     default_static_modules=TO_LIST('''pdb_smbpasswd pdb_tdbsam pdb_wbc_sam pdb_ldap rpc_lsarpc rpc_samr
315                                       rpc_winreg rpc_initshutdown rpc_dssetup rpc_wkssvc rpc_svcctl
316                                       rpc_ntsvcs rpc_netlogon rpc_netdfs rpc_srvsvc rpc_spoolss
317                                       rpc_eventlog auth_sam auth_unix auth_winbind auth_wbc auth_server
318                                       auth_domain auth_builtin auth_netlogond vfs_default
319                                       nss_info_template idmap_tdb idmap_passdb
320                                       idmap_nss''')
321
322     default_shared_modules=TO_LIST('''vfs_recycle vfs_audit vfs_extd_audit vfs_full_audit vfs_netatalk
323                                       vfs_fake_perms vfs_default_quota vfs_readonly vfs_cap
324                                       vfs_expand_msdfs vfs_shadow_copy vfs_shadow_copy2 charset_CP850
325                                       charset_CP437 auth_script vfs_readahead vfs_xattr_tdb
326                                       vfs_streams_xattr vfs_streams_depot vfs_acl_xattr vfs_acl_tdb
327                                       vfs_smb_traffic_analyzer vfs_preopen vfs_catia vfs_scannedonly
328                                       vfs_crossrename vfs_linux_xfs_sgid''')
329
330     if Options.options.developer:
331         default_static_modules.extend(TO_LIST('rpc_rpcecho pdb_ads'))
332         default_shared_modules.extend(TO_LIST('charset_weird perfcount_test'))
333
334     if Options.options.with_acl_support:
335         default_static_modules.extend(TO_LIST('vfs_posixacl'))
336
337     explicit_shared_modules = TO_LIST(Options.options.shared_modules, delimiter=',')
338     explicit_static_modules = TO_LIST(Options.options.static_modules, delimiter=',')
339
340     final_static_modules = default_static_modules
341     final_shared_modules = default_shared_modules
342
343     for m in explicit_static_modules:
344         if m in final_shared_modules:
345             final_shared_modules.remove(m)
346         final_static_modules.append(m)
347     for m in explicit_shared_modules:
348         if m in final_static_modules:
349             final_static_modules.remove(m)
350         final_shared_modules.append(m)
351
352     conf.env['static_modules'] = final_static_modules
353     conf.env['shared_modules'] = final_shared_modules
354
355     conf.DEFINE('STRING_STATIC_MODULES', ' '.join(final_static_modules), quote=True)
356
357     static_list = {}
358     shared_list = {}
359
360     prefixes = ['vfs', 'pdb', 'rpc', 'auth', 'nss_info', 'charset', 'idmap', 'gpext', 'perfcount']
361     conf.env['MODULE_PREFIXES'] = prefixes
362     for p in prefixes:
363         for m in final_static_modules:
364             if m.find(p) == 0:
365                 if not p in static_list:
366                     static_list[p] = []
367                 static_list[p].append(m)
368         for m in final_shared_modules:
369             if m.find(p) == 0:
370                 if not p in shared_list:
371                     shared_list[p] = []
372                 shared_list[p].append(m)
373
374     for p in prefixes:
375         static_env = "%s_STATIC" % p.upper()
376         shared_env = "%s_SHARED" % p.upper()
377         conf.env[static_env] = []
378         conf.env[shared_env] = []
379         if p in static_list:
380             decl_list=""
381             if p == "rpc":
382                 for entry in static_list[p]:
383                     decl_list += "extern NTSTATUS %s_init(const struct rpc_srv_callbacks *rpc_srv_cb); " % entry
384                     conf.env[static_env].append('%s' % entry.upper())
385                 decl_list = decl_list.rstrip()
386                 conf.DEFINE('static_decl_%s' % p, decl_list)
387                 conf.DEFINE('static_init_%s' % p, '{ %s_init(NULL); }' % '_init(NULL);  '.join(static_list[p]))
388             else:
389                 for entry in static_list[p]:
390                     decl_list += "extern NTSTATUS %s_init(void); " % entry
391                     conf.env[static_env].append('%s' % entry.upper())
392                 decl_list = decl_list.rstrip()
393                 conf.DEFINE('static_decl_%s' % p, decl_list)
394                 conf.DEFINE('static_init_%s' % p, '{ %s_init(); }' % '_init();  '.join(static_list[p]))
395         else:
396             conf.DEFINE('static_decl_%s' % p, '')
397             conf.DEFINE('static_init_%s' % p, '{}')
398         if p in shared_list:
399             for entry in shared_list[p]:
400                 conf.DEFINE('%s_init' % entry, 'init_samba_module')
401                 conf.env[shared_env].append('%s' % entry.upper())
402
403     if Options.options.with_winbind:
404         conf.env.build_winbind = True
405         conf.DEFINE('WITH_WINBIND', '1')
406
407     conf.find_program('awk', var='AWK')
408
409     # Darwin has extra options to xattr-family functions
410     conf.CHECK_CODE('getxattr(0, 0, 0, 0, 0, 0);',
411                     'XATTR_ADD_OPT',
412                     msg="Checking whether xattr interface takes additional options",
413                     headers='sys/types.h attr/xattr.h sys/xattr.h')
414
415     conf.CHECK_HEADERS('asm/types.h')
416
417     conf.CHECK_CODE('dev_t dev; int i = major(dev); return 0', "HAVE_DEVICE_MAJOR_FN",
418                     headers='unistd.h sys/types.h',
419                     msg="Checking for major macro")
420
421     conf.CHECK_CODE('dev_t dev; int i = minor(dev); return 0', "HAVE_DEVICE_MINOR_FN",
422                     headers='unistd.h sys/types.h',
423                     msg="Checking for minor macro")
424
425     conf.CHECK_STRUCTURE_MEMBER('struct dirent', 'd_off',
426                                 headers='unistd.h sys/types.h dirent.h',
427                                 define='HAVE_DIRENT_D_OFF')
428
429     conf.CHECK_FUNCS('setnetgrent getnetgrent endnetgrent')
430     conf.CHECK_CODE('setnetgrent("foo")', 'HAVE_SETNETGRENT_PROTOTYPE',
431                     msg="Checking for setnetgrent prototype",
432                     headers='netdb.h netgroup.h',
433                     cflags="-Werror-implicit-function-declaration")
434     conf.CHECK_CODE('getnetgrent', 'HAVE_GETNETGRENT_PROTOTYPE',
435                     msg="Checking for getnetgrent prototype",
436                     headers='netdb.h netgroup.h',
437                     cflags="-Werror-implicit-function-declaration")
438     conf.CHECK_CODE('endnetgrent', 'HAVE_ENDNETGRENT_PROTOTYPE',
439                     msg="Checking for endnetgrent prototype",
440                     headers='netdb.h netgroup.h',
441                     cflags="-Werror-implicit-function-declaration")
442
443     #FIXME: Should just be set when krb5 and ldap requirements are fulfilled
444     if Options.options.with_ads:
445         conf.DEFINE('WITH_ADS', '1')
446
447     # Look for CUPS
448     conf.find_program('cups-config', var='CUPS_CONFIG')
449     if conf.env.CUPS_CONFIG and Options.options.with_cups:
450         conf.check_cfg(path="cups-config", args="--cflags --ldflags --libs",
451                        package="", uselib_store="cups")
452         conf.CHECK_HEADERS('cups/cups.h cups/language.h', lib='cups')
453         conf.CHECK_LIB('cups')
454     else:
455         # define an empty subsystem for cups, to allow it to be used as an empty dependency
456         conf.SET_TARGET_TYPE('cups', 'EMPTY')
457
458     # Check for LDAP
459     if Options.options.with_ldap:
460         conf.CHECK_HEADERS('ldap.h lber.h')
461         conf.CHECK_TYPE('ber_tag_t', 'unsigned int', headers='ldap.h lber.h')
462         conf.CHECK_FUNCS_IN('ber_scanf ber_sockbuf_add_io', 'lber')
463         conf.CHECK_VARIABLE('LDAP_OPT_SOCKBUF', headers='ldap.h')
464         # if ber_sockbuf_add_io() and LDAP_OPT_SOCKBUF are available, we can add
465         # SASL wrapping hooks
466         if conf.CONFIG_SET('HAVE_BER_SOCKBUF_ADD_IO') and \
467                 conf.CONFIG_SET('HAVE_LDAP_OPT_SOCKBUF'):
468             conf.DEFINE('HAVE_LDAP_SASL_WRAPPING', '1')
469
470         # if we LBER_OPT_LOG_PRINT_FN we can intercept ldap logging and print it out
471         # for the samba logs
472         conf.CHECK_VARIABLE('LBER_OPT_LOG_PRINT_FN',
473                             define='HAVE_LBER_LOG_PRINT_FN', headers='lber.h')
474
475         conf.CHECK_FUNCS_IN('ldap_init ldap_initialize ldap_set_rebind_proc', 'ldap')
476         conf.CHECK_FUNCS_IN('ldap_add_result_entry', 'ldap')
477
478         # Check if ldap_set_rebind_proc() takes three arguments
479         if conf.CHECK_CODE('ldap_set_rebind_proc(0, 0, 0)',
480                            'LDAP_SET_REBIND_PROC_ARGS',
481                            msg="Checking whether ldap_set_rebind_proc takes 3 arguments",
482                            headers='ldap.h lber.h', link=False):
483             conf.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '3')
484         else:
485             conf.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '2')
486
487         # last but not least, if ldap_init() exists, we want to use ldap
488         if conf.CONFIG_SET('HAVE_LDAP_INIT'):
489             conf.DEFINE('HAVE_LDAP', '1')
490             conf.DEFINE('LDAP_DEPRECATED', '1')
491             conf.env['SMBLDAP'] = 'lib/smbldap.c'
492             conf.env['SMBLDAPUTIL'] = 'lib/smbldap_util.c'
493     else:
494         conf.SET_TARGET_TYPE('ldap', 'EMPTY')
495         conf.SET_TARGET_TYPE('lber', 'EMPTY')
496
497     # Check for kerberos
498     conf.find_program('krb5-config', var='KRB5_CONFIG')
499     if conf.env.KRB5_CONFIG and Options.options.with_krb5:
500         conf.check_cfg(path="krb5-config", args="--cflags --libs",
501                        package="gssapi", uselib_store="krb5")
502         conf.CHECK_HEADERS('krb5.h krb5/locate_plugin.h', lib='krb5')
503         conf.CHECK_HEADERS('gssapi.h gssapi/gssapi_generic.h gssapi/gssapi.h com_err.h', lib='krb5')
504
505         if conf.CONFIG_SET('HAVE_KRB5_LOCATE_PLUGIN_H'):
506             conf.env['WINBIND_KRB5_LOCATOR'] = 'bin/winbind_krb5_locator.so'
507
508         conf.CHECK_FUNCS_IN('_et_list', 'com_err')
509         conf.CHECK_FUNCS_IN('krb5_encrypt_data', 'k5crypto')
510         conf.CHECK_FUNCS_IN('crypto', 'des_set_key')
511         conf.CHECK_FUNCS_IN('copy_Authenticator', 'asn1')
512         conf.CHECK_FUNCS_IN('roken_getaddrinfo_hostspec', 'roken')
513         if conf.CHECK_FUNCS_IN('gss_display_status', 'gssapi gssapi_krb5'):
514             conf.DEFINE('HAVE_GSSAPI', '1')
515         conf.CHECK_FUNCS_IN('krb5_mk_req_extended krb5_kt_compare', 'krb5')
516         conf.CHECK_FUNCS('''
517 krb5_set_real_time krb5_set_default_in_tkt_etypes krb5_set_default_tgs_enctypes
518 krb5_set_default_tgs_ktypes krb5_principal2salt krb5_use_enctype
519 krb5_string_to_key krb5_get_pw_salt krb5_string_to_key_salt krb5_auth_con_setkey
520 krb5_auth_con_setuseruserkey krb5_locate_kdc krb5_get_permitted_enctypes
521 krb5_get_default_in_tkt_etypes krb5_free_data_contents
522 krb5_principal_get_comp_string krb5_free_unparsed_name
523 krb5_free_keytab_entry_contents krb5_kt_free_entry krb5_krbhst_init
524 krb5_krbhst_get_addrinfo krb5_c_enctype_compare krb5_enctypes_compatible_keys
525 krb5_crypto_init krb5_crypto_destroy krb5_decode_ap_req free_AP_REQ
526 krb5_verify_checksum krb5_c_verify_checksum krb5_principal_compare_any_realm
527 krb5_parse_name_norealm krb5_princ_size krb5_get_init_creds_opt_set_pac_request
528 krb5_get_renewed_creds krb5_get_kdc_cred krb5_free_error_contents
529 initialize_krb5_error_table krb5_get_init_creds_opt_alloc
530 krb5_get_init_creds_opt_free krb5_get_init_creds_opt_get_error
531 krb5_enctype_to_string krb5_fwd_tgt_creds krb5_auth_con_set_req_cksumtype
532 krb5_get_creds_opt_alloc krb5_get_creds_opt_set_impersonate krb5_get_creds
533 krb5_get_credentials_for_user krb5_get_host_realm krb5_free_host_realm''',
534                          lib='krb5')
535         conf.CHECK_DECLS('''krb5_get_credentials_for_user
536                             krb5_auth_con_set_req_cksumtype''',
537                             headers='krb5.h', always=True)
538         conf.CHECK_VARIABLE('AP_OPTS_USE_SUBKEY', headers='krb5.h')
539         conf.CHECK_VARIABLE('KV5M_KEYTAB', headers='krb5.h')
540         conf.CHECK_VARIABLE('KRB5_KU_OTHER_CKSUM', headers='krb5.h')
541         conf.CHECK_VARIABLE('KRB5_KEYUSAGE_APP_DATA_CKSUM', headers='krb5.h')
542         conf.CHECK_STRUCTURE_MEMBER('krb5_keytab_entry', 'key', headers='krb5.h',
543                                     define='HAVE_KRB5_KEYTAB_ENTRY_KEY')
544         conf.CHECK_STRUCTURE_MEMBER('krb5_keytab_entry', 'keyblock', headers='krb5.h',
545                                     define='HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK')
546         conf.CHECK_STRUCTURE_MEMBER('krb5_address', 'magic', headers='krb5.h',
547                                     define='HAVE_MAGIC_IN_KRB5_ADDRESS')
548         conf.CHECK_STRUCTURE_MEMBER('krb5_address', 'addrtype', headers='krb5.h',
549                                     define='HAVE_ADDRTYPE_IN_KRB5_ADDRESS')
550         conf.CHECK_STRUCTURE_MEMBER('krb5_ticket', 'enc_part2', headers='krb5.h',
551                                     define='HAVE_KRB5_TKT_ENC_PART2')
552         conf.CHECK_STRUCTURE_MEMBER('krb5_creds', 'keyblock', headers='krb5.h',
553                                     define='HAVE_KRB5_KEYBLOCK_IN_CREDS')
554         conf.CHECK_STRUCTURE_MEMBER('krb5_creds', 'session', headers='krb5.h',
555                                     define='HAVE_KRB5_SESSION_IN_CREDS')
556         conf.CHECK_TYPE('krb5_encrypt_block', headers='krb5.h')
557         conf.CHECK_CODE('''
558 krb5_context ctx;
559 krb5_get_init_creds_opt *opt = NULL;
560 krb5_get_init_creds_opt_free(ctx, opt);
561 ''',
562                         'KRB5_CREDS_OPT_FREE_REQUIRES_CONTEXT',
563                         headers='krb5.h', link=False,
564                         msg="Checking whether krb5_get_init_creds_opt_free takes a context argument")
565         conf.CHECK_CODE('krb5_mk_error(0,0,0)',
566                         'HAVE_SHORT_KRB5_MK_ERROR_INTERFACE',
567                         headers='krb5.h', link=False,
568                         msg="Checking whether krb5_mk_error takes 3 arguments MIT or 9 Heimdal")
569         conf.CHECK_CODE('''
570 const krb5_data *pkdata;
571 krb5_context context;
572 krb5_principal principal;
573 pkdata = krb5_princ_component(context, principal, 0);
574 ''',
575                         'HAVE_KRB5_PRINC_COMPONENT',
576                         headers='krb5.h', lib='krb5',
577                         msg="Checking whether krb5_princ_component is available")
578
579         conf.CHECK_CODE('''
580 int main(void) {
581 char buf[256];
582 krb5_enctype_to_string(1, buf, 256);
583 return 0;
584 }''',
585                         'HAVE_KRB5_ENCTYPE_TO_STRING_WITH_SIZE_T_ARG',
586                         headers='krb5.h', lib='krb5',
587                         addmain=False, cflags='-Werror',
588                         msg="Checking whether krb5_enctype_to_string takes size_t argument")
589
590         conf.CHECK_CODE('''
591 int main(void) {
592 krb5_context context = NULL;
593 char *str = NULL;
594 krb5_enctype_to_string(context, 1, &str);
595 if (str) free (str);
596 return 0;
597 }''',
598                         'HAVE_KRB5_ENCTYPE_TO_STRING_WITH_KRB5_CONTEXT_ARG',
599                         headers='krb5.h stdlib.h', lib='krb5',
600                         addmain=False, cflags='-Werror',
601                         msg="Checking whether krb5_enctype_to_string takes krb5_context argument")
602         conf.DEFINE('HAVE_KRB5', '1')
603
604     else:
605         conf.SET_TARGET_TYPE('krb5', 'EMPTY')
606         conf.SET_TARGET_TYPE('gssapi', 'EMPTY')
607         conf.SET_TARGET_TYPE('gssapi_krb5', 'EMPTY')
608         conf.SET_TARGET_TYPE('com_err', 'EMPTY')
609         conf.SET_TARGET_TYPE('k5crypto', 'EMPTY')
610
611     if Options.options.with_utmp:
612         conf.CHECK_FUNCS('pututline pututxline updwtmp updwtmpx getutmpx getutxent')
613         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_name', headers='utmp.h',
614                                     define='HAVE_UT_UT_NAME')
615         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_user', headers='utmp.h',
616                                     define='HAVE_UT_UT_USER')
617         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_id', headers='utmp.h',
618                                     define='HAVE_UT_UT_ID')
619         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_host', headers='utmp.h',
620                                     define='HAVE_UT_UT_HOST')
621         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_time', headers='utmp.h',
622                                     define='HAVE_UT_UT_TIME')
623         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_tv', headers='utmp.h',
624                                     define='HAVE_UT_UT_TV')
625         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_type', headers='utmp.h',
626                                     define='HAVE_UT_UT_TYPE')
627         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_pid', headers='utmp.h',
628                                     define='HAVE_UT_UT_PID')
629         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_exit.e_exit', headers='utmp.h',
630                                     define='HAVE_UT_UT_EXIT')
631         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_addr_v6', headers='utmp.h',
632                                     define='HAVE_UT_UT_ADDR_V6')
633         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_addr', headers='utmp.h',
634                                     define='HAVE_UT_UT_ADDR')
635         conf.CHECK_STRUCTURE_MEMBER('struct utmpx', 'ut_syslen', headers='utmpx.h',
636                                     define='HAVE_UX_UT_SYSLEN')
637         conf.CHECK_CODE('struct utmp utarg; struct utmp *utreturn; utreturn = pututline(&utarg);',
638                         'PUTUTLINE_RETURNS_UTMP', headers='utmp.h',
639                         msg="Checking whether pututline returns pointer")
640         conf.DEFINE('WITH_UTMP', 1)
641
642     if Options.options.with_avahi:
643         conf.env.with_avahi = True
644         if not conf.CHECK_HEADERS('avahi-common/watch.h avahi-client/client.h'): conf.env.with_avahi = False
645         if not conf.CHECK_FUNCS_IN('avahi_client_new', 'avahi-client'): conf.env.with_avahi = False
646         if not conf.CHECK_FUNCS_IN('avahi_strerror', 'avahi-common'): conf.env.with_avahi = False
647         if conf.env.with_avahi:
648             conf.DEFINE('WITH_AVAHI_SUPPORT', 1)
649     else:
650         conf.SET_TARGET_TYPE('avahi-common', 'EMPTY')
651         conf.SET_TARGET_TYPE('avahi-client', 'EMPTY')
652
653     if Options.options.with_iconv:
654         conf.env.with_iconv = True
655         if not conf.CHECK_FUNCS_IN('iconv_open', 'iconv', headers='iconv.h'):
656             conf.env.with_iconv = False
657         if conf.env.with_iconv:
658             conf.DEFINE('HAVE_ICONV', 1)
659
660     if Options.options.with_pam:
661         conf.CHECK_HEADERS('security/pam_appl.h security/pam_modules.h pam/pam_modules.h', together=True)
662         conf.CHECK_FUNCS_IN('pam_start', 'pam', checklibc=True, headers='security/pam_appl.h')
663
664     seteuid = False
665     if not seteuid:
666         seteuid = conf.CHECK_CODE('''
667                                 #define AUTOCONF_TEST 1
668                                 #define USE_SETREUID 1
669                                 #include "./lib/util_sec.c"
670                                 ''',
671                                 'USE_SETREUID',
672                                 addmain=False,
673                                 execute=True,
674                                 msg="Checking whether setreuid is available")
675     if not seteuid:
676         seteuid = conf.CHECK_CODE('''
677                                 #define AUTOCONF_TEST 1
678                                 #define USE_SETRESUID 1
679                                 #include "./lib/util_sec.c"
680                                 ''',
681                                 'USE_SETRESUID',
682                                 addmain=False,
683                                 execute=True,
684                                 msg="Checking whether setresuid is available")
685     if not seteuid:
686         seteuid = conf.CHECK_CODE('''
687                                 #define AUTOCONF_TEST 1
688                                 #define USE_SETEUID 1
689                                 #include "./lib/util_sec.c"
690                                 ''',
691                                 'USE_SETEUID',
692                                 addmain=False,
693                                 execute=True,
694                                 msg="Checking whether seteuid is available")
695     if not seteuid:
696         seteuid = conf.CHECK_CODE('''
697                                 #define AUTOCONF_TEST 1
698                                 #define USE_SETUIDX 1
699                                 #include "./lib/util_sec.c"
700                                 ''',
701                                 'USE_SETUIDX',
702                                 addmain=False,
703                                 execute=True,
704                                 mandatory=True,
705                                 msg="Checking whether setuidx is available")
706
707
708     conf.SAMBA_CONFIG_H('include/config.h')
709
710 def ctags(ctx):
711     "build 'tags' file using ctags"
712     import Utils
713     source_root = os.path.dirname(Utils.g_module.root_path)
714     cmd = 'ctags $(find %s/.. -name "*.[ch]" | grep -v "*_proto\.h")' % source_root
715     print("Running: %s" % cmd)
716     os.system(cmd)