build: Move nss_wrapper to third_party
[bbaumbach/samba-autobuild/.git] / wscript
1 #!/usr/bin/env python
2
3 srcdir = '.'
4 blddir = 'bin'
5
6 APPNAME='samba'
7 VERSION=None
8
9 import sys, os, tempfile
10 sys.path.insert(0, srcdir+"/buildtools/wafsamba")
11 import wafsamba, Options, samba_dist, samba_git, Scripting, Utils, samba_version
12 import Logs, samba_utils
13
14
15 samba_dist.DIST_DIRS('.')
16 samba_dist.DIST_BLACKLIST('.gitignore .bzrignore source4/selftest/provisions')
17
18 # install in /usr/local/samba by default
19 default_prefix = Options.default_prefix = '/usr/local/samba'
20
21 # This callback optionally takes a list of paths as arguments:
22 # --with-system_mitkrb5 /path/to/krb5 /another/path
23 def system_mitkrb5_callback(option, opt, value, parser):
24     setattr(parser.values, option.dest, True)
25     value = []
26     for arg in parser.rargs:
27         # stop on --foo like options
28         if arg[:2] == "--" and len(arg) > 2:
29             break
30         value.append(arg)
31     if len(value)>0:
32         del parser.rargs[:len(value)]
33         setattr(parser.values, option.dest, value)
34
35 def set_options(opt):
36     opt.BUILTIN_DEFAULT('NONE')
37     opt.PRIVATE_EXTENSION_DEFAULT('samba4')
38     opt.RECURSE('lib/replace')
39     opt.RECURSE('dynconfig')
40     opt.RECURSE('lib/ldb')
41     opt.RECURSE('selftest')
42     opt.RECURSE('source4/lib/tls')
43     opt.RECURSE('source4/dsdb/samdb/ldb_modules')
44     opt.RECURSE('pidl')
45     opt.RECURSE('source3')
46     opt.RECURSE('lib/util')
47     opt.RECURSE('lib/crypto')
48     opt.RECURSE('ctdb')
49     opt.samba_add_onoff_option('pthreadpool', with_name="enable", without_name="disable", default=True)
50
51     opt.add_option('--with-system-mitkrb5',
52                    help='build Samba with system MIT Kerberos. ' +
53                         'You may specify list of paths where Kerberos is installed (e.g. /usr/local /usr/kerberos) to search krb5-config',
54                    action='callback', callback=system_mitkrb5_callback, dest='with_system_mitkrb5', default=False)
55     opt.add_option('--with-system-mitkdc',
56                    help=('Specify the path to the krb5kdc binary from MIT Kerberos'),
57                    type="string",
58                    dest='with_system_mitkdc',
59                    default=None)
60
61     opt.add_option('--without-ad-dc',
62                    help='disable AD DC functionality (enables only Samba FS (File Server, Winbind, NMBD) and client utilities.',
63                    action='store_true', dest='without_ad_dc', default=False)
64
65     opt.add_option('--with-ntvfs-fileserver',
66                    help='enable the deprecated NTVFS file server from the original Samba4 branch (default if --enable-selftest specified).  Conflicts with --with-system-mitkrb5 and --without-ad-dc',
67                    action='store_true', dest='with_ntvfs_fileserver')
68
69     opt.add_option('--without-ntvfs-fileserver',
70                    help='disable the deprecated NTVFS file server from the original Samba4 branch',
71                    action='store_false', dest='with_ntvfs_fileserver')
72
73     opt.add_option('--with-pie',
74                   help=("Build Position Independent Executables " +
75                         "(default if supported by compiler)"),
76                   action="store_true", dest='enable_pie')
77     opt.add_option('--without-pie',
78                   help=("Disable Position Independent Executable builds"),
79                   action="store_false", dest='enable_pie')
80
81     opt.add_option('--with-relro',
82                   help=("Build with full RELocation Read-Only (RELRO)" +
83                         "(default if supported by compiler)"),
84                   action="store_true", dest='enable_relro')
85     opt.add_option('--without-relro',
86                   help=("Disable RELRO builds"),
87                   action="store_false", dest='enable_relro')
88
89     gr = opt.option_group('developer options')
90
91     opt.tool_options('python') # options for disabling pyc or pyo compilation
92     # enable options related to building python extensions
93
94
95 def configure(conf):
96     version = samba_version.load_version(env=conf.env)
97
98     conf.DEFINE('CONFIG_H_IS_FROM_SAMBA', 1)
99     conf.DEFINE('_SAMBA_BUILD_', version.MAJOR, add_to_cflags=True)
100     conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
101
102     if Options.options.developer:
103         conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD')
104         conf.env.DEVELOPER = True
105
106     conf.ADD_EXTRA_INCLUDES('#include/public #source4 #lib #source4/lib #source4/include #include #lib/replace')
107
108     conf.env.replace_add_global_pthread = True
109     conf.RECURSE('lib/replace')
110
111     conf.RECURSE('examples/fuse')
112
113     conf.SAMBA_CHECK_PERL(mandatory=True)
114     conf.find_program('xsltproc', var='XSLTPROC')
115
116     if conf.env.disable_python:
117         if not (Options.options.without_ad_dc):
118             raise Utils.WafError('--disable-python requires --without-ad-dc')
119
120     conf.SAMBA_CHECK_PYTHON(mandatory=True, version=(2, 6, 0))
121     conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=(not conf.env.disable_python))
122
123     if sys.platform == 'darwin' and not conf.env['HAVE_ENVIRON_DECL']:
124         # Mac OSX needs to have this and it's also needed that the python is compiled with this
125         # otherwise you face errors about common symbols
126         if not conf.CHECK_SHLIB_W_PYTHON("Checking if -fno-common is needed"):
127             conf.ADD_CFLAGS('-fno-common')
128         if not conf.CHECK_SHLIB_W_PYTHON("Checking if -undefined dynamic_lookup is not need"):
129             conf.env.append_value('shlib_LINKFLAGS', ['-undefined', 'dynamic_lookup'])
130
131     if sys.platform == 'darwin':
132         conf.ADD_LDFLAGS('-framework CoreFoundation')
133
134     if int(conf.env['PYTHON_VERSION'][0]) >= 3:
135         raise Utils.WafError('Python version 3.x is not supported by Samba yet')
136
137     conf.RECURSE('dynconfig')
138     conf.RECURSE('selftest')
139
140     if conf.CHECK_FOR_THIRD_PARTY():
141         conf.RECURSE('third_party')
142     else:
143         if not conf.CHECK_ZLIB():
144             raise Utils.WafError('zlib development packages have not been found.\nIf third_party is installed, check that it is in the proper place.')
145         else:
146             conf.define('USING_SYSTEM_ZLIB',1)
147
148         if not conf.CHECK_POPT():
149             raise Utils.WafError('popt development packages have not been found.\nIf third_party is installed, check that it is in the proper place.')
150         else:
151             conf.define('USING_SYSTEM_POPT', 1)
152
153         if not conf.CHECK_CMOCKA():
154             raise Utils.WafError('cmocka development packages has not been found.\nIf third_party is installed, check that it is in the proper place.')
155         else:
156             conf.define('USING_SYSTEM_CMOCKA', 1)
157
158         if conf.CONFIG_GET('ENABLE_SELFTEST'):
159             if not conf.CHECK_SOCKET_WRAPPER():
160                 raise Utils.WafError('socket_wrapper package has not been found.\nIf third_party is installed, check that it is in the proper place.')
161             else:
162                 conf.define('USING_SYSTEM_SOCKET_WRAPPER', 1)
163
164             if not conf.CHECK_NSS_WRAPPER():
165                 raise Utils.WafError('nss_wrapper package has not been found.\nIf third_party is installed, check that it is in the proper place.')
166             else:
167                 conf.define('USING_SYSTEM_NSS_WRAPPER', 1)
168
169     conf.RECURSE('lib/ldb')
170
171     if not (Options.options.without_ad_dc):
172         conf.DEFINE('AD_DC_BUILD_IS_ENABLED', 1)
173
174     if Options.options.with_system_mitkrb5:
175         conf.PROCESS_SEPARATE_RULE('system_mitkrb5')
176     if not (Options.options.without_ad_dc or Options.options.with_system_mitkrb5):
177         conf.DEFINE('AD_DC_BUILD_IS_ENABLED', 1)
178
179     # Only process heimdal_build for non-MIT KRB5 builds
180     # When MIT KRB5 checks are done as above, conf.env.KRB5_VENDOR will be set
181     # to the lowcased output of 'krb5-config --vendor'.
182     # If it is not set or the output is 'heimdal', we are dealing with
183     # system-provided or embedded Heimdal build
184     if conf.CONFIG_GET('KRB5_VENDOR') in (None, 'heimdal'):
185         conf.RECURSE('source4/heimdal_build')
186     conf.RECURSE('source4/lib/tls')
187     conf.RECURSE('source4/dsdb/samdb/ldb_modules')
188     conf.RECURSE('source4/ntvfs/sysdep')
189     conf.RECURSE('lib/util')
190     conf.RECURSE('lib/util/charset')
191     conf.RECURSE('source4/auth')
192     conf.RECURSE('nsswitch')
193     conf.RECURSE('libcli/smbreadline')
194     conf.RECURSE('lib/crypto')
195     conf.RECURSE('pidl')
196     if conf.CONFIG_GET('ENABLE_SELFTEST'):
197         conf.RECURSE('lib/resolv_wrapper')
198         conf.RECURSE('lib/uid_wrapper')
199         if Options.options.with_pam:
200             conf.RECURSE('lib/pam_wrapper')
201         if Options.options.with_ntvfs_fileserver != False:
202             if not (Options.options.without_ad_dc):
203                 conf.DEFINE('WITH_NTVFS_FILESERVER', 1)
204         if Options.options.with_ntvfs_fileserver == False:
205             if not (Options.options.without_ad_dc):
206                 raise Utils.WafError('--without-ntvfs-fileserver conflicts with --enable-selftest while building the AD DC')
207         conf.RECURSE('testsuite/unittests')
208
209     if Options.options.with_ntvfs_fileserver == True:
210         if Options.options.without_ad_dc:
211             raise Utils.WafError('--with-ntvfs-fileserver conflicts with --without-ad-dc')
212         conf.DEFINE('WITH_NTVFS_FILESERVER', 1)
213
214     if Options.options.with_pthreadpool:
215         if conf.CONFIG_SET('HAVE_PTHREAD'):
216             conf.DEFINE('WITH_PTHREADPOOL', '1')
217         else:
218             Logs.warn("pthreadpool support cannot be enabled when pthread support was not found")
219             conf.undefine('WITH_PTHREADPOOL')
220
221     conf.RECURSE('source3')
222     conf.RECURSE('lib/texpect')
223     conf.RECURSE('python')
224     if conf.env.with_ctdb:
225         conf.RECURSE('ctdb')
226     conf.RECURSE('lib/socket')
227     conf.RECURSE('auth')
228
229     conf.SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS()
230
231     # gentoo always adds this. We want our normal build to be as
232     # strict as the strictest OS we support, so adding this here
233     # allows us to find problems on our development hosts faster.
234     # It also results in faster load time.
235
236     conf.env.asneeded_ldflags = conf.ADD_LDFLAGS('-Wl,--as-needed', testflags=True)
237
238     if not conf.CHECK_NEED_LC("-lc not needed"):
239         conf.ADD_LDFLAGS('-lc', testflags=False)
240
241     if not conf.CHECK_CODE('#include "tests/summary.c"',
242                            define='SUMMARY_PASSES',
243                            addmain=False,
244                            msg='Checking configure summary'):
245         raise Utils.WafError('configure summary failed')
246
247     if Options.options.enable_pie != False:
248         if Options.options.enable_pie == True:
249                 need_pie = True
250         else:
251                 # not specified, only build PIEs if supported by compiler
252                 need_pie = False
253         if conf.check_cc(cflags='-fPIE', ldflags='-pie', mandatory=need_pie,
254                          msg="Checking compiler for PIE support"):
255             conf.env['ENABLE_PIE'] = True
256
257     if Options.options.enable_relro != False:
258         if Options.options.enable_relro == True:
259             need_relro = True
260         else:
261             # not specified, only build RELROs if supported by compiler
262             need_relro = False
263         if conf.check_cc(cflags='', ldflags='-Wl,-z,relro,-z,now', mandatory=need_relro,
264                          msg="Checking compiler for full RELRO support"):
265             conf.env['ENABLE_RELRO'] = True
266
267     conf.SAMBA_CONFIG_H('include/config.h')
268
269 def etags(ctx):
270     '''build TAGS file using etags'''
271     import Utils
272     source_root = os.path.dirname(Utils.g_module.root_path)
273     cmd = 'rm -f %s/TAGS && (find %s -name "*.[ch]" | egrep -v \.inst\. | xargs -n 100 etags -a)' % (source_root, source_root)
274     print("Running: %s" % cmd)
275     status = os.system(cmd)
276     if os.WEXITSTATUS(status):
277         raise Utils.WafError('etags failed')
278
279 def ctags(ctx):
280     "build 'tags' file using ctags"
281     import Utils
282     source_root = os.path.dirname(Utils.g_module.root_path)
283     cmd = 'ctags --python-kinds=-i $(find %s -name "*.[ch]" | grep -v "*_proto\.h" | egrep -v \.inst\.) $(find %s -name "*.py")' % (source_root, source_root)
284     print("Running: %s" % cmd)
285     status = os.system(cmd)
286     if os.WEXITSTATUS(status):
287         raise Utils.WafError('ctags failed')
288
289
290 # putting this here enabled build in the list
291 # of commands in --help
292 def build(bld):
293     '''build all targets'''
294     samba_version.load_version(env=bld.env, is_install=bld.is_install)
295
296
297 def pydoctor(ctx):
298     '''build python apidocs'''
299     bp = os.path.abspath('bin/python')
300     mpaths = {}
301     modules = ['talloc', 'tdb', 'ldb']
302     for m in modules:
303         f = os.popen("PYTHONPATH=%s python -c 'import %s; print %s.__file__'" % (bp, m, m), 'r')
304         try:
305             mpaths[m] = f.read().strip()
306         finally:
307             f.close()
308     mpaths['main'] = bp
309     cmd = ('PYTHONPATH=%(main)s pydoctor --introspect-c-modules --project-name=Samba '
310            '--project-url=http://www.samba.org --make-html --docformat=restructuredtext '
311            '--add-package bin/python/samba ' + ''.join('--add-module %s ' % n for n in modules))
312     cmd = cmd % mpaths
313     print("Running: %s" % cmd)
314     status = os.system(cmd)
315     if os.WEXITSTATUS(status):
316         raise Utils.WafError('pydoctor failed')
317
318
319 def pep8(ctx):
320     '''run pep8 validator'''
321     cmd='PYTHONPATH=bin/python pep8 -r bin/python/samba'
322     print("Running: %s" % cmd)
323     status = os.system(cmd)
324     if os.WEXITSTATUS(status):
325         raise Utils.WafError('pep8 failed')
326
327
328 def wafdocs(ctx):
329     '''build wafsamba apidocs'''
330     from samba_utils import recursive_dirlist
331     os.system('pwd')
332     list = recursive_dirlist('../buildtools/wafsamba', '.', pattern='*.py')
333
334     cmd='PYTHONPATH=bin/python pydoctor --project-name=wafsamba --project-url=http://www.samba.org --make-html --docformat=restructuredtext'
335     print(list)
336     for f in list:
337         cmd += ' --add-module %s' % f
338     print("Running: %s" % cmd)
339     status = os.system(cmd)
340     if os.WEXITSTATUS(status):
341         raise Utils.WafError('wafdocs failed')
342
343
344 def dist():
345     '''makes a tarball for distribution'''
346     sambaversion = samba_version.load_version(env=None)
347
348     os.system("make -C ctdb manpages")
349     samba_dist.DIST_FILES('ctdb/doc:ctdb/doc', extend=True)
350
351     os.system(srcdir + "/release-scripts/build-manpages-nogit")
352     samba_dist.DIST_FILES('bin/docs:docs', extend=True)
353
354     if sambaversion.IS_SNAPSHOT:
355         # write .distversion file and add to tar
356         if not os.path.isdir(blddir):
357             os.makedirs(blddir)
358         distversionf = tempfile.NamedTemporaryFile(mode='w', prefix='.distversion',dir=blddir)
359         for field in sambaversion.vcs_fields:
360             distveroption = field + '=' + str(sambaversion.vcs_fields[field])
361             distversionf.write(distveroption + '\n')
362         distversionf.flush()
363         samba_dist.DIST_FILES('%s:.distversion' % distversionf.name, extend=True)
364
365         samba_dist.dist()
366         distversionf.close()
367     else:
368         samba_dist.dist()
369
370
371 def distcheck():
372     '''test that distribution tarball builds and installs'''
373     samba_version.load_version(env=None)
374     import Scripting
375     d = Scripting.distcheck
376     d()
377
378 def wildcard_cmd(cmd):
379     '''called on a unknown command'''
380     from samba_wildcard import run_named_build_task
381     run_named_build_task(cmd)
382
383 def main():
384     from samba_wildcard import wildcard_main
385
386     wildcard_main(wildcard_cmd)
387 Scripting.main = main
388
389 def reconfigure(ctx):
390     '''reconfigure if config scripts have changed'''
391     import samba_utils
392     samba_utils.reconfigure(ctx)
393
394
395 if os.path.isdir(os.path.join(srcdir, ".git")):
396     # Check if there are submodules that are checked out but out of date.
397     for submodule, status in samba_git.read_submodule_status(srcdir):
398         if status == "out-of-date":
399             raise Utils.WafError("some submodules are out of date. Please run 'git submodule update'")