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