s3-libsmb/libsmb_file.c: replace cli_read_old() with cli_read()
[Samba/gebeck_regimport.git] / wscript
blob0b5e68f1367b6396d8b5e677384643455021a48e
1 #! /usr/bin/env python
3 srcdir = '.'
4 blddir = 'bin'
6 APPNAME='samba'
7 VERSION=None
9 import sys, os
10 sys.path.insert(0, srcdir+"/buildtools/wafsamba")
11 import wafsamba, Options, samba_dist, Scripting, Utils, samba_version
14 samba_dist.DIST_DIRS('.')
16 # install in /usr/local/samba by default
17 Options.default_prefix = '/usr/local/samba'
19 os.environ['TOPLEVEL_BUILD'] = '1'
21 def set_options(opt):
22 opt.BUILTIN_DEFAULT('NONE')
23 opt.PRIVATE_EXTENSION_DEFAULT('samba4')
24 opt.RECURSE('lib/replace')
25 opt.RECURSE('dynconfig')
26 opt.RECURSE('lib/ldb')
27 opt.RECURSE('selftest')
28 opt.RECURSE('source4/lib/tls')
29 opt.RECURSE('lib/nss_wrapper')
30 opt.RECURSE('lib/socket_wrapper')
31 opt.RECURSE('lib/uid_wrapper')
32 opt.RECURSE('pidl')
33 opt.RECURSE('source3')
35 gr = opt.option_group('developer options')
36 gr.add_option('--enable-build-farm',
37 help='enable special build farm options',
38 action='store_true', dest='BUILD_FARM')
40 opt.tool_options('python') # options for disabling pyc or pyo compilation
41 # enable options related to building python extensions
44 def configure(conf):
45 conf.env.toplevel_build = True
46 version = samba_version.load_version(env=conf.env)
48 conf.DEFINE('CONFIG_H_IS_FROM_SAMBA', 1)
49 conf.DEFINE('_SAMBA_WAF_BUILD_', version.MAJOR)
50 conf.DEFINE('_SAMBA_BUILD_', version.MAJOR, add_to_cflags=True)
51 conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
53 if Options.options.developer:
54 conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD')
56 # this enables smbtorture.static for s3 in the build farm
57 conf.env.BUILD_FARM = Options.options.BUILD_FARM or os.environ.get('RUN_FROM_BUILD_FARM')
59 conf.ADD_EXTRA_INCLUDES('#include/public #source4 #lib #source4/lib #source4/include #include #lib/replace')
61 conf.RECURSE('lib/replace')
63 conf.find_program('python', var='PYTHON', mandatory=True)
64 conf.find_program('perl', var='PERL', mandatory=True)
65 conf.find_program('xsltproc', var='XSLTPROC')
67 # enable tool to build python extensions
68 conf.check_tool('python')
69 conf.check_python_version((2,4,2))
70 conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=True)
72 if sys.platform == 'darwin' and not conf.env['HAVE_ENVIRON_DECL']:
73 # Mac OSX needs to have this and it's also needed that the python is compiled with this
74 # otherwise you face errors about common symbols
75 if not conf.CHECK_SHLIB_W_PYTHON("Checking if -fno-common is needed"):
76 conf.ADD_CFLAGS('-fno-common')
77 if not conf.CHECK_SHLIB_W_PYTHON("Checking if -undefined dynamic_lookup is not need"):
78 conf.env.append_value('shlib_LINKFLAGS', ['-undefined', 'dynamic_lookup'])
79 if int(conf.env['PYTHON_VERSION'][0]) >= 3:
80 raise Utils.WafError('Python version 3.x is not supported by Samba yet')
82 conf.RECURSE('dynconfig')
83 conf.RECURSE('lib/ldb')
84 conf.RECURSE('source4/heimdal_build')
85 conf.RECURSE('source4/lib/tls')
86 conf.RECURSE('source4/ntvfs/sysdep')
87 conf.RECURSE('lib/util')
88 conf.RECURSE('lib/ccan')
89 conf.RECURSE('lib/zlib')
90 conf.RECURSE('lib/util/charset')
91 conf.RECURSE('source4/auth')
92 conf.RECURSE('lib/nss_wrapper')
93 conf.RECURSE('nsswitch')
94 conf.RECURSE('lib/socket_wrapper')
95 conf.RECURSE('lib/uid_wrapper')
96 conf.RECURSE('lib/popt')
97 conf.RECURSE('lib/subunit/c')
98 conf.RECURSE('libcli/smbreadline')
99 conf.RECURSE('pidl')
100 conf.RECURSE('selftest')
101 conf.RECURSE('source3')
103 # we don't want any libraries or modules to rely on runtime
104 # resolution of symbols
105 if sys.platform != "openbsd4":
106 conf.env.undefined_ldflags = conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True)
108 if sys.platform != "openbsd4" and conf.env.undefined_ignore_ldflags == []:
109 if conf.CHECK_LDFLAGS(['-undefined', 'dynamic_lookup']):
110 conf.env.undefined_ignore_ldflags = ['-undefined', 'dynamic_lookup']
113 # gentoo always adds this. We want our normal build to be as
114 # strict as the strictest OS we support, so adding this here
115 # allows us to find problems on our development hosts faster.
116 # It also results in faster load time.
118 if sys.platform != "openbsd4":
119 conf.env.asneeded_ldflags = conf.ADD_LDFLAGS('-Wl,--as-needed', testflags=True)
121 if not conf.CHECK_NEED_LC("-lc not needed"):
122 conf.ADD_LDFLAGS('-lc', testflags=False)
124 # we don't want PYTHONDIR in config.h, as otherwise changing
125 # --prefix causes a complete rebuild
126 del(conf.env.defines['PYTHONDIR'])
127 del(conf.env.defines['PYTHONARCHDIR'])
129 conf.SAMBA_CONFIG_H('include/config.h')
132 def etags(ctx):
133 '''build TAGS file using etags'''
134 import Utils
135 source_root = os.path.dirname(Utils.g_module.root_path)
136 cmd = 'etags $(find %s -name "*.[ch]" | egrep -v \.inst\.)' % source_root
137 print("Running: %s" % cmd)
138 os.system(cmd)
140 def ctags(ctx):
141 "build 'tags' file using ctags"
142 import Utils
143 source_root = os.path.dirname(Utils.g_module.root_path)
144 cmd = 'ctags $(find %s -name "*.[ch]" | grep -v "*_proto\.h" | egrep -v \.inst\.)' % source_root
145 print("Running: %s" % cmd)
146 os.system(cmd)
148 # putting this here enabled build in the list
149 # of commands in --help
150 def build(bld):
151 '''build all targets'''
152 samba_version.load_version(env=bld.env, is_install=bld.is_install)
153 pass
156 def pydoctor(ctx):
157 '''build python apidocs'''
158 cmd='PYTHONPATH=bin/python pydoctor --project-name=Samba --project-url=http://www.samba.org --make-html --docformat=restructuredtext --add-package bin/python/samba'
159 print("Running: %s" % cmd)
160 os.system(cmd)
162 def wafdocs(ctx):
163 '''build wafsamba apidocs'''
164 from samba_utils import recursive_dirlist
165 os.system('pwd')
166 list = recursive_dirlist('../buildtools/wafsamba', '.', pattern='*.py')
168 cmd='PYTHONPATH=bin/python pydoctor --project-name=wafsamba --project-url=http://www.samba.org --make-html --docformat=restructuredtext'
169 print(list)
170 for f in list:
171 cmd += ' --add-module %s' % f
172 print("Running: %s" % cmd)
173 os.system(cmd)
176 def dist():
177 '''makes a tarball for distribution'''
178 samba_version.load_version(env=None)
179 samba_dist.dist()
181 def distcheck():
182 '''test that distribution tarball builds and installs'''
183 samba_version.load_version(env=None)
184 import Scripting
185 d = Scripting.distcheck
186 d(subdir='source4')
188 def wildcard_cmd(cmd):
189 '''called on a unknown command'''
190 from samba_wildcard import run_named_build_task
191 run_named_build_task(cmd)
193 def main():
194 from samba_wildcard import wildcard_main
195 wildcard_main(wildcard_cmd)
196 Scripting.main = main
198 def reconfigure(ctx):
199 '''reconfigure if config scripts have changed'''
200 import samba_utils
201 samba_utils.reconfigure(ctx)