Add 'bool use_privs' to smbd_calculate_access_mask().
[Samba/gebeck_regimport.git] / wscript
blob4f823102dd5cf31131d6331671ae614e9fdd3ceb
1 #! /usr/bin/env python
3 srcdir = '.'
4 blddir = 'bin'
6 APPNAME='samba'
7 VERSION=None
9 import sys, os, tempfile
10 sys.path.insert(0, srcdir+"/buildtools/wafsamba")
11 import wafsamba, Options, samba_dist, Scripting, Utils, samba_version
14 samba_dist.DIST_DIRS('.')
15 samba_dist.DIST_BLACKLIST('.gitignore .bzrignore source4/selftest/provisions/alpha13')
17 # install in /usr/local/samba by default
18 Options.default_prefix = '/usr/local/samba'
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)
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')
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)
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)
59 gr = opt.option_group('developer options')
61 opt.add_option('--disable-ntdb',
62 help=("disable ntdb"),
63 action="store_true", dest='disable_ntdb', default=False)
66 opt.tool_options('python') # options for disabling pyc or pyo compilation
67 # enable options related to building python extensions
70 def configure(conf):
71 version = samba_version.load_version(env=conf.env)
73 conf.DEFINE('CONFIG_H_IS_FROM_SAMBA', 1)
74 conf.DEFINE('_SAMBA_BUILD_', version.MAJOR, add_to_cflags=True)
75 conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
77 if Options.options.developer:
78 conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD')
79 conf.env.DEVELOPER = True
81 conf.ADD_EXTRA_INCLUDES('#include/public #source4 #lib #source4/lib #source4/include #include #lib/replace')
83 conf.RECURSE('lib/replace')
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')
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)
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'])
102 if sys.platform == 'darwin':
103 conf.ADD_LDFLAGS('-framework CoreFoundation')
105 if int(conf.env['PYTHON_VERSION'][0]) >= 3:
106 raise Utils.WafError('Python version 3.x is not supported by Samba yet')
108 conf.RECURSE('dynconfig')
109 conf.RECURSE('lib/ldb')
111 if Options.options.with_system_mitkrb5:
112 conf.PROCESS_SEPARATE_RULE('system_mitkrb5')
113 if not (Options.options.without_ad_dc or Options.options.with_system_mitkrb5):
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.env.disable_ntdb = getattr(Options.options, 'disable_ntdb', False)
127 if not Options.options.disable_ntdb:
128 conf.RECURSE('lib/ntdb')
129 else:
130 conf.DEFINE('DISABLE_NTDB', 1)
131 conf.RECURSE('lib/zlib')
132 conf.RECURSE('lib/util/charset')
133 conf.RECURSE('source4/auth')
134 conf.RECURSE('lib/nss_wrapper')
135 conf.RECURSE('nsswitch')
136 conf.RECURSE('lib/socket_wrapper')
137 conf.RECURSE('lib/uid_wrapper')
138 conf.RECURSE('lib/popt')
139 conf.RECURSE('lib/iniparser/src')
140 conf.RECURSE('lib/subunit/c')
141 conf.RECURSE('libcli/smbreadline')
142 conf.RECURSE('lib/crypto')
143 conf.RECURSE('pidl')
144 conf.RECURSE('selftest')
145 conf.RECURSE('source3')
147 conf.SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS()
149 # gentoo always adds this. We want our normal build to be as
150 # strict as the strictest OS we support, so adding this here
151 # allows us to find problems on our development hosts faster.
152 # It also results in faster load time.
154 if sys.platform != "openbsd4":
155 conf.env.asneeded_ldflags = conf.ADD_LDFLAGS('-Wl,--as-needed', testflags=True)
157 if not conf.CHECK_NEED_LC("-lc not needed"):
158 conf.ADD_LDFLAGS('-lc', testflags=False)
160 # we don't want PYTHONDIR in config.h, as otherwise changing
161 # --prefix causes a complete rebuild
162 del(conf.env.defines['PYTHONDIR'])
163 del(conf.env.defines['PYTHONARCHDIR'])
165 if not conf.CHECK_CODE('#include "tests/summary.c"',
166 define='SUMMARY_PASSES',
167 addmain=False,
168 execute=True,
169 msg='Checking configure summary'):
170 raise Utils.WafError('configure summary failed')
172 conf.SAMBA_CONFIG_H('include/config.h')
175 def etags(ctx):
176 '''build TAGS file using etags'''
177 import Utils
178 source_root = os.path.dirname(Utils.g_module.root_path)
179 cmd = 'rm -f %s/TAGS && (find %s -name "*.[ch]" | egrep -v \.inst\. | xargs -n 100 etags -a)' % (source_root, source_root)
180 print("Running: %s" % cmd)
181 os.system(cmd)
183 def ctags(ctx):
184 "build 'tags' file using ctags"
185 import Utils
186 source_root = os.path.dirname(Utils.g_module.root_path)
187 cmd = 'ctags --python-kinds=-i $(find %s -name "*.[ch]" | grep -v "*_proto\.h" | egrep -v \.inst\.) $(find %s -name "*.py")' % (source_root, source_root)
188 print("Running: %s" % cmd)
189 os.system(cmd)
191 # putting this here enabled build in the list
192 # of commands in --help
193 def build(bld):
194 '''build all targets'''
195 samba_version.load_version(env=bld.env, is_install=bld.is_install)
196 pass
199 def pydoctor(ctx):
200 '''build python apidocs'''
201 bp = os.path.abspath('bin/python')
202 mpaths = {}
203 for m in ['talloc', 'tdb', 'ldb', 'ntdb']:
204 f = os.popen("PYTHONPATH=%s python -c 'import %s; print %s.__file__'" % (bp, m, m), 'r')
205 try:
206 mpaths[m] = f.read().strip()
207 finally:
208 f.close()
209 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' % (
210 bp, mpaths['tdb'], mpaths['ldb'], mpaths['talloc'], mpaths['ntdb'])
211 print("Running: %s" % cmd)
212 os.system(cmd)
215 def pep8(ctx):
216 '''run pep8 validator'''
217 cmd='PYTHONPATH=bin/python pep8 -r bin/python/samba'
218 print("Running: %s" % cmd)
219 os.system(cmd)
222 def wafdocs(ctx):
223 '''build wafsamba apidocs'''
224 from samba_utils import recursive_dirlist
225 os.system('pwd')
226 list = recursive_dirlist('../buildtools/wafsamba', '.', pattern='*.py')
228 cmd='PYTHONPATH=bin/python pydoctor --project-name=wafsamba --project-url=http://www.samba.org --make-html --docformat=restructuredtext'
229 print(list)
230 for f in list:
231 cmd += ' --add-module %s' % f
232 print("Running: %s" % cmd)
233 os.system(cmd)
236 def dist():
237 '''makes a tarball for distribution'''
238 sambaversion = samba_version.load_version(env=None)
240 os.system(srcdir + "/release-scripts/build-manpages-nogit")
241 samba_dist.DIST_FILES('bin/docs:docs', extend=True)
243 os.system(srcdir + "/source3/autogen.sh")
244 samba_dist.DIST_FILES('source3/configure', extend=True)
245 samba_dist.DIST_FILES('source3/autoconf', extend=True)
246 samba_dist.DIST_FILES('source3/include/autoconf', extend=True)
247 samba_dist.DIST_FILES('examples/VFS/configure', extend=True)
248 samba_dist.DIST_FILES('examples/VFS/module_config.h.in', extend=True)
250 if sambaversion.IS_SNAPSHOT:
251 # write .distversion file and add to tar
252 if not os.path.isdir(blddir):
253 os.makedirs(blddir)
254 distversionf = tempfile.NamedTemporaryFile(mode='w', prefix='.distversion',dir=blddir)
255 for field in sambaversion.vcs_fields:
256 distveroption = field + '=' + str(sambaversion.vcs_fields[field])
257 distversionf.write(distveroption + '\n')
258 distversionf.flush()
259 samba_dist.DIST_FILES('%s:.distversion' % distversionf.name, extend=True)
261 samba_dist.dist()
262 distversionf.close()
263 else:
264 samba_dist.dist()
267 def distcheck():
268 '''test that distribution tarball builds and installs'''
269 samba_version.load_version(env=None)
270 import Scripting
271 d = Scripting.distcheck
274 def wildcard_cmd(cmd):
275 '''called on a unknown command'''
276 from samba_wildcard import run_named_build_task
277 run_named_build_task(cmd)
279 def main():
280 from samba_wildcard import wildcard_main
281 wildcard_main(wildcard_cmd)
282 Scripting.main = main
284 def reconfigure(ctx):
285 '''reconfigure if config scripts have changed'''
286 import samba_utils
287 samba_utils.reconfigure(ctx)