third_party/iniparser: Initial support for iniparser.
[sharpe/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, Scripting, Utils, samba_version
12
13
14 samba_dist.DIST_DIRS('.')
15 samba_dist.DIST_BLACKLIST('.gitignore .bzrignore source4/selftest/provisions')
16
17 # install in /usr/local/samba by default
18 Options.default_prefix = '/usr/local/samba'
19
20 # This callback optionally takes a list of paths as arguments:
21 # --with-system_mitkrb5 /path/to/krb5 /another/path
22 def system_mitkrb5_callback(option, opt, value, parser):
23     setattr(parser.values, option.dest, True)
24     value = []
25     for arg in parser.rargs:
26         # stop on --foo like options
27         if arg[:2] == "--" and len(arg) > 2:
28             break
29         value.append(arg)
30     if len(value)>0:
31         del parser.rargs[:len(value)]
32         setattr(parser.values, option.dest, value)
33
34 def set_options(opt):
35     opt.BUILTIN_DEFAULT('NONE')
36     opt.PRIVATE_EXTENSION_DEFAULT('samba4')
37     opt.RECURSE('lib/replace')
38     opt.RECURSE('dynconfig')
39     opt.RECURSE('lib/ldb')
40     opt.RECURSE('lib/ntdb')
41     opt.RECURSE('selftest')
42     opt.RECURSE('source4/lib/tls')
43     opt.RECURSE('pidl')
44     opt.RECURSE('source3')
45     opt.RECURSE('lib/util')
46
47     opt.add_option('--with-system-mitkrb5',
48                    help='enable system MIT krb5 build (includes Samba 4 client and Samba 3 code base).'+
49                         'You may specify list of paths where Kerberos is installed (e.g. /usr/local /usr/kerberos) to search krb5-config',
50                    action='callback', callback=system_mitkrb5_callback, dest='with_system_mitkrb5', default=False)
51
52     opt.add_option('--without-ad-dc',
53                    help='disable AD DC functionality (enables Samba 4 client and Samba 3 code base).',
54                    action='store_true', dest='without_ad_dc', default=False)
55
56     opt.add_option('--with-pie',
57                   help=("Build Position Independent Executables " +
58                         "(default if supported by compiler)"),
59                   action="store_true", dest='enable_pie')
60     opt.add_option('--without-pie',
61                   help=("Disable Position Independent Executable builds"),
62                   action="store_false", dest='enable_pie')
63
64     opt.add_option('--with-relro',
65                   help=("Build with full RELocation Read-Only (RELRO)" +
66                         "(default if supported by compiler)"),
67                   action="store_true", dest='enable_relro')
68     opt.add_option('--without-relro',
69                   help=("Disable RELRO builds"),
70                   action="store_false", dest='enable_relro')
71
72     opt.add_option('--with-systemd',
73                    help=("Enable systemd integration"),
74                    action='store_true', dest='enable_systemd')
75
76     opt.add_option('--without-systemd',
77                    help=("Disable systemd integration"),
78                    action='store_false', dest='enable_systemd')
79
80     gr = opt.option_group('developer options')
81
82     opt.tool_options('python') # options for disabling pyc or pyo compilation
83     # enable options related to building python extensions
84
85
86 def configure(conf):
87     version = samba_version.load_version(env=conf.env)
88
89     conf.DEFINE('CONFIG_H_IS_FROM_SAMBA', 1)
90     conf.DEFINE('_SAMBA_BUILD_', version.MAJOR, add_to_cflags=True)
91     conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
92
93     if Options.options.developer:
94         conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD')
95         conf.env.DEVELOPER = True
96
97     conf.ADD_EXTRA_INCLUDES('#include/public #source4 #lib #source4/lib #source4/include #include #lib/replace')
98
99     conf.env.replace_add_global_pthread = True
100     conf.RECURSE('lib/replace')
101
102     conf.find_program('perl', var='PERL', mandatory=True)
103     conf.find_program('xsltproc', var='XSLTPROC')
104
105     conf.SAMBA_CHECK_PYTHON(mandatory=True, version=(2,5,0))
106     conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=True)
107
108     if sys.platform == 'darwin' and not conf.env['HAVE_ENVIRON_DECL']:
109         # Mac OSX needs to have this and it's also needed that the python is compiled with this
110         # otherwise you face errors about common symbols
111         if not conf.CHECK_SHLIB_W_PYTHON("Checking if -fno-common is needed"):
112             conf.ADD_CFLAGS('-fno-common')
113         if not conf.CHECK_SHLIB_W_PYTHON("Checking if -undefined dynamic_lookup is not need"):
114             conf.env.append_value('shlib_LINKFLAGS', ['-undefined', 'dynamic_lookup'])
115
116     if sys.platform == 'darwin':
117         conf.ADD_LDFLAGS('-framework CoreFoundation')
118
119     if int(conf.env['PYTHON_VERSION'][0]) >= 3:
120         raise Utils.WafError('Python version 3.x is not supported by Samba yet')
121
122     conf.RECURSE('dynconfig')
123
124     if conf.CHECK_FOR_THIRD_PARTY():
125         conf.RECURSE('third_party/iniparser/src')
126     else:
127         if not conf.CHECK_INIPARSER():
128             raise Utils.WafError('iniparser development packages have not been found.\nIf third_party is installed, check that it is in the proper place.')
129         else:
130             conf.define('USING_SYSTEM_INIPARSER', 1)
131
132     conf.RECURSE('lib/ldb')
133
134     if Options.options.with_system_mitkrb5:
135         conf.PROCESS_SEPARATE_RULE('system_mitkrb5')
136     if not (Options.options.without_ad_dc or Options.options.with_system_mitkrb5):
137         conf.DEFINE('AD_DC_BUILD_IS_ENABLED', 1)
138     # Only process heimdal_build for non-MIT KRB5 builds
139     # When MIT KRB5 checks are done as above, conf.env.KRB5_VENDOR will be set
140     # to the lowcased output of 'krb5-config --vendor'.
141     # If it is not set or the output is 'heimdal', we are dealing with
142     # system-provided or embedded Heimdal build
143     if conf.CONFIG_GET('KRB5_VENDOR') in (None, 'heimdal'):
144         conf.RECURSE('source4/heimdal_build')
145     conf.RECURSE('source4/lib/tls')
146     conf.RECURSE('source4/ntvfs/sysdep')
147     conf.RECURSE('lib/util')
148     conf.RECURSE('lib/ccan')
149     conf.RECURSE('lib/ntdb')
150     conf.RECURSE('lib/zlib')
151     conf.RECURSE('lib/util/charset')
152     conf.RECURSE('source4/auth')
153     conf.RECURSE('lib/nss_wrapper')
154     conf.RECURSE('nsswitch')
155     conf.RECURSE('lib/socket_wrapper')
156     conf.RECURSE('lib/uid_wrapper')
157     conf.RECURSE('lib/popt')
158     conf.RECURSE('lib/subunit/c')
159     conf.RECURSE('libcli/smbreadline')
160     conf.RECURSE('lib/crypto')
161     conf.RECURSE('pidl')
162     conf.RECURSE('selftest')
163     conf.RECURSE('source3')
164
165     conf.SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS()
166
167     # gentoo always adds this. We want our normal build to be as
168     # strict as the strictest OS we support, so adding this here
169     # allows us to find problems on our development hosts faster.
170     # It also results in faster load time.
171
172     if not sys.platform.startswith("openbsd"):
173         conf.env.asneeded_ldflags = conf.ADD_LDFLAGS('-Wl,--as-needed', testflags=True)
174
175     if not conf.CHECK_NEED_LC("-lc not needed"):
176         conf.ADD_LDFLAGS('-lc', testflags=False)
177
178     # we don't want PYTHONDIR in config.h, as otherwise changing
179     # --prefix causes a complete rebuild
180     del(conf.env.defines['PYTHONDIR'])
181     del(conf.env.defines['PYTHONARCHDIR'])
182
183     if not conf.CHECK_CODE('#include "tests/summary.c"',
184                            define='SUMMARY_PASSES',
185                            addmain=False,
186                            msg='Checking configure summary'):
187         raise Utils.WafError('configure summary failed')
188
189     if Options.options.enable_pie != False:
190         if Options.options.enable_pie == True:
191                 need_pie = True
192         else:
193                 # not specified, only build PIEs if supported by compiler
194                 need_pie = False
195         if conf.check_cc(cflags='-fPIE', ldflags='-pie', mandatory=need_pie,
196                          msg="Checking compiler for PIE support"):
197                 conf.env['ENABLE_PIE'] = True
198
199     if Options.options.enable_relro != False:
200         if Options.options.enable_relro == True:
201             need_relro = True
202         else:
203             # not specified, only build RELROs if supported by compiler
204             need_relro = False
205         if conf.check_cc(cflags='', ldflags='-Wl,-z,relro,-z,now', mandatory=need_relro,
206                          msg="Checking compiler for full RELRO support"):
207             conf.env['ENABLE_RELRO'] = True
208
209     if Options.options.enable_systemd != False:
210         conf.check_cfg(package='libsystemd-daemon', args='--cflags --libs',
211                        msg='Checking for libsystemd-daemon', uselib_store="SYSTEMD-DAEMON")
212         conf.CHECK_HEADERS('systemd/sd-daemon.h', lib='systemd-daemon')
213         conf.CHECK_LIB('systemd-daemon', shlib=True)
214
215     if (conf.CONFIG_SET('HAVE_SYSTEMD_SD_DAEMON_H') and
216         conf.CONFIG_SET('HAVE_LIBSYSTEMD_DAEMON')):
217         conf.DEFINE('HAVE_SYSTEMD', '1')
218         conf.env['ENABLE_SYSTEMD'] = True
219     else:
220         conf.SET_TARGET_TYPE('systemd-daemon', 'EMPTY')
221         conf.undefine('HAVE_SYSTEMD')
222
223     conf.SAMBA_CONFIG_H('include/config.h')
224
225 def etags(ctx):
226     '''build TAGS file using etags'''
227     import Utils
228     source_root = os.path.dirname(Utils.g_module.root_path)
229     cmd = 'rm -f %s/TAGS && (find %s -name "*.[ch]" | egrep -v \.inst\. | xargs -n 100 etags -a)' % (source_root, source_root)
230     print("Running: %s" % cmd)
231     status = os.system(cmd)
232     if os.WEXITSTATUS(status):
233         raise Utils.WafError('etags failed')
234
235 def ctags(ctx):
236     "build 'tags' file using ctags"
237     import Utils
238     source_root = os.path.dirname(Utils.g_module.root_path)
239     cmd = 'ctags --python-kinds=-i $(find %s -name "*.[ch]" | grep -v "*_proto\.h" | egrep -v \.inst\.) $(find %s -name "*.py")' % (source_root, source_root)
240     print("Running: %s" % cmd)
241     status = os.system(cmd)
242     if os.WEXITSTATUS(status):
243         raise Utils.WafError('ctags failed')
244
245 # putting this here enabled build in the list
246 # of commands in --help
247 def build(bld):
248     '''build all targets'''
249     samba_version.load_version(env=bld.env, is_install=bld.is_install)
250     pass
251
252
253 def pydoctor(ctx):
254     '''build python apidocs'''
255     bp = os.path.abspath('bin/python')
256     mpaths = {}
257     for m in ['talloc', 'tdb', 'ldb', 'ntdb']:
258         f = os.popen("PYTHONPATH=%s python -c 'import %s; print %s.__file__'" % (bp, m, m), 'r')
259         try:
260             mpaths[m] = f.read().strip()
261         finally:
262             f.close()
263     cmd='PYTHONPATH=%s pydoctor --introspect-c-modules --project-name=Samba --project-url=http://www.samba.org --make-html --docformat=restructuredtext --add-package bin/python/samba --add-module %s --add-module %s --add-module %s' % (
264         bp, mpaths['tdb'], mpaths['ldb'], mpaths['talloc'], mpaths['ntdb'])
265     print("Running: %s" % cmd)
266     status = os.system(cmd)
267     if os.WEXITSTATUS(status):
268         raise Utils.WafError('pydoctor failed')
269
270
271 def pep8(ctx):
272     '''run pep8 validator'''
273     cmd='PYTHONPATH=bin/python pep8 -r bin/python/samba'
274     print("Running: %s" % cmd)
275     status = os.system(cmd)
276     if os.WEXITSTATUS(status):
277         raise Utils.WafError('pep8 failed')
278
279
280 def wafdocs(ctx):
281     '''build wafsamba apidocs'''
282     from samba_utils import recursive_dirlist
283     os.system('pwd')
284     list = recursive_dirlist('../buildtools/wafsamba', '.', pattern='*.py')
285
286     cmd='PYTHONPATH=bin/python pydoctor --project-name=wafsamba --project-url=http://www.samba.org --make-html --docformat=restructuredtext'
287     print(list)
288     for f in list:
289         cmd += ' --add-module %s' % f
290     print("Running: %s" % cmd)
291     status = os.system(cmd)
292     if os.WEXITSTATUS(status):
293         raise Utils.WafError('wafdocs failed')
294
295
296 def dist():
297     '''makes a tarball for distribution'''
298     sambaversion = samba_version.load_version(env=None)
299
300     os.system(srcdir + "/release-scripts/build-manpages-nogit")
301     samba_dist.DIST_FILES('bin/docs:docs', extend=True)
302
303     if sambaversion.IS_SNAPSHOT:
304         # write .distversion file and add to tar
305         if not os.path.isdir(blddir):
306             os.makedirs(blddir)
307         distversionf = tempfile.NamedTemporaryFile(mode='w', prefix='.distversion',dir=blddir)
308         for field in sambaversion.vcs_fields:
309             distveroption = field + '=' + str(sambaversion.vcs_fields[field])
310             distversionf.write(distveroption + '\n')
311         distversionf.flush()
312         samba_dist.DIST_FILES('%s:.distversion' % distversionf.name, extend=True)
313
314         samba_dist.dist()
315         distversionf.close()
316     else:
317         samba_dist.dist()
318
319
320 def distcheck():
321     '''test that distribution tarball builds and installs'''
322     samba_version.load_version(env=None)
323     import Scripting
324     d = Scripting.distcheck
325     d()
326
327 def wildcard_cmd(cmd):
328     '''called on a unknown command'''
329     from samba_wildcard import run_named_build_task
330     run_named_build_task(cmd)
331
332 def main():
333     from samba_wildcard import wildcard_main
334     wildcard_main(wildcard_cmd)
335 Scripting.main = main
336
337 def reconfigure(ctx):
338     '''reconfigure if config scripts have changed'''
339     import samba_utils
340     samba_utils.reconfigure(ctx)