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