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