s3:torture:delete: add a comment
[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
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('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     gr = opt.option_group('developer options')
60     gr.add_option('--enable-build-farm',
61                    help='enable special build farm options',
62                    action='store_true', dest='BUILD_FARM')
63
64     opt.add_option('--disable-ntdb',
65                    help=("disable ntdb"),
66                    action="store_true", dest='disable_ntdb', default=False)
67
68
69     opt.tool_options('python') # options for disabling pyc or pyo compilation
70     # enable options related to building python extensions
71
72
73 def configure(conf):
74     version = samba_version.load_version(env=conf.env)
75
76     conf.DEFINE('CONFIG_H_IS_FROM_SAMBA', 1)
77     conf.DEFINE('_SAMBA_BUILD_', version.MAJOR, add_to_cflags=True)
78     conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
79
80     if Options.options.developer:
81         conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD')
82         conf.env.DEVELOPER = True
83
84     # this enables smbtorture.static for s3 in the build farm
85     conf.env.BUILD_FARM = Options.options.BUILD_FARM or os.environ.get('RUN_FROM_BUILD_FARM')
86
87     conf.ADD_EXTRA_INCLUDES('#include/public #source4 #lib #source4/lib #source4/include #include #lib/replace')
88
89     conf.RECURSE('lib/replace')
90
91     conf.find_program('python', var='PYTHON', mandatory=True)
92     conf.find_program('perl', var='PERL', mandatory=True)
93     conf.find_program('xsltproc', var='XSLTPROC')
94
95     # enable tool to build python extensions
96     conf.check_tool('python')
97     conf.check_python_version((2,4,2))
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.env.disable_ntdb = getattr(Options.options, 'disable_ntdb', False)
133     if not Options.options.disable_ntdb:
134         conf.RECURSE('lib/ntdb')
135     else:
136         conf.DEFINE('DISABLE_NTDB', 1)
137     conf.RECURSE('lib/zlib')
138     conf.RECURSE('lib/util/charset')
139     conf.RECURSE('source4/auth')
140     conf.RECURSE('lib/nss_wrapper')
141     conf.RECURSE('nsswitch')
142     conf.RECURSE('lib/socket_wrapper')
143     conf.RECURSE('lib/uid_wrapper')
144     conf.RECURSE('lib/popt')
145     conf.RECURSE('lib/iniparser/src')
146     conf.RECURSE('lib/subunit/c')
147     conf.RECURSE('libcli/smbreadline')
148     conf.RECURSE('lib/crypto')
149     conf.RECURSE('pidl')
150     conf.RECURSE('selftest')
151     conf.RECURSE('source3')
152
153     conf.SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS()
154
155     # gentoo always adds this. We want our normal build to be as
156     # strict as the strictest OS we support, so adding this here
157     # allows us to find problems on our development hosts faster.
158     # It also results in faster load time.
159
160     if sys.platform != "openbsd4":
161         conf.env.asneeded_ldflags = conf.ADD_LDFLAGS('-Wl,--as-needed', testflags=True)
162
163     if not conf.CHECK_NEED_LC("-lc not needed"):
164         conf.ADD_LDFLAGS('-lc', testflags=False)
165
166     # we don't want PYTHONDIR in config.h, as otherwise changing
167     # --prefix causes a complete rebuild
168     del(conf.env.defines['PYTHONDIR'])
169     del(conf.env.defines['PYTHONARCHDIR'])
170
171     if not conf.CHECK_CODE('#include "tests/summary.c"',
172                            define='SUMMARY_PASSES',
173                            addmain=False,
174                            execute=True,
175                            msg='Checking configure summary'):
176         raise Utils.WafError('configure summary failed')
177     
178     conf.SAMBA_CONFIG_H('include/config.h')
179
180
181 def etags(ctx):
182     '''build TAGS file using etags'''
183     import Utils
184     source_root = os.path.dirname(Utils.g_module.root_path)
185     cmd = 'rm -f %s/TAGS && (find %s -name "*.[ch]" | egrep -v \.inst\. | xargs -n 100 etags -a)' % (source_root, source_root)
186     print("Running: %s" % cmd)
187     os.system(cmd)
188
189 def ctags(ctx):
190     "build 'tags' file using ctags"
191     import Utils
192     source_root = os.path.dirname(Utils.g_module.root_path)
193     cmd = 'ctags --python-kinds=-i $(find %s -name "*.[ch]" | grep -v "*_proto\.h" | egrep -v \.inst\.) $(find %s -name "*.py")' % (source_root, source_root)
194     print("Running: %s" % cmd)
195     os.system(cmd)
196
197 # putting this here enabled build in the list
198 # of commands in --help
199 def build(bld):
200     '''build all targets'''
201     samba_version.load_version(env=bld.env, is_install=bld.is_install)
202     pass
203
204
205 def pydoctor(ctx):
206     '''build python apidocs'''
207     bp = os.path.abspath('bin/python')
208     mpaths = {}
209     for m in ['talloc', 'tdb', 'ldb', 'ntdb']:
210         f = os.popen("PYTHONPATH=%s python -c 'import %s; print %s.__file__'" % (bp, m, m), 'r')
211         try:
212             mpaths[m] = f.read().strip()
213         finally:
214             f.close()
215     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' % (
216         bp, mpaths['tdb'], mpaths['ldb'], mpaths['talloc'], mpaths['ntdb'])
217     print("Running: %s" % cmd)
218     os.system(cmd)
219
220
221 def pep8(ctx):
222     '''run pep8 validator'''
223     cmd='PYTHONPATH=bin/python pep8 -r bin/python/samba'
224     print("Running: %s" % cmd)
225     os.system(cmd)
226
227
228 def wafdocs(ctx):
229     '''build wafsamba apidocs'''
230     from samba_utils import recursive_dirlist
231     os.system('pwd')
232     list = recursive_dirlist('../buildtools/wafsamba', '.', pattern='*.py')
233
234     cmd='PYTHONPATH=bin/python pydoctor --project-name=wafsamba --project-url=http://www.samba.org --make-html --docformat=restructuredtext'
235     print(list)
236     for f in list:
237         cmd += ' --add-module %s' % f
238     print("Running: %s" % cmd)
239     os.system(cmd)
240
241
242 def dist():
243     '''makes a tarball for distribution'''
244     sambaversion = samba_version.load_version(env=None)
245
246     if sambaversion.IS_SNAPSHOT:
247         # write .distversion file and add to tar
248         f = '.distversion'
249         distversionf = open(f, 'w')
250         for field in sambaversion.vcs_fields:
251             distveroption = field + '=' + str(sambaversion.vcs_fields[field])
252             distversionf.write(distveroption + '\n')
253         distversionf.close()
254         samba_dist.DIST_FILES('.distversion')
255
256     samba_dist.dist()
257
258 def distcheck():
259     '''test that distribution tarball builds and installs'''
260     samba_version.load_version(env=None)
261     import Scripting
262     d = Scripting.distcheck
263     d()
264
265 def wildcard_cmd(cmd):
266     '''called on a unknown command'''
267     from samba_wildcard import run_named_build_task
268     run_named_build_task(cmd)
269
270 def main():
271     from samba_wildcard import wildcard_main
272     wildcard_main(wildcard_cmd)
273 Scripting.main = main
274
275 def reconfigure(ctx):
276     '''reconfigure if config scripts have changed'''
277     import samba_utils
278     samba_utils.reconfigure(ctx)