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 source4/selftest/provisions/release-4-0-0/ source4/selftest/provisions/release-4-1-0rc3/')
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)
25 for arg
in parser
.rargs
:
26 # stop on --foo like options
27 if arg
[:2] == "--" and len(arg
) > 2:
31 del parser
.rargs
[:len(value
)]
32 setattr(parser
.values
, option
.dest
, value
)
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')
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 opt
.add_option('--with-pie',
60 help=("Build Position Independent Executables " +
61 "(default if supported by compiler)"),
62 action
="store_true", dest
='enable_pie')
63 opt
.add_option('--without-pie',
64 help=("Disable Position Independent Executable builds"),
65 action
="store_false", dest
='enable_pie')
67 opt
.add_option('--with-relro',
68 help=("Build with full RELocation Read-Only (RELRO)" +
69 "(default if supported by compiler)"),
70 action
="store_true", dest
='enable_relro')
71 opt
.add_option('--without-relro',
72 help=("Disable RELRO builds"),
73 action
="store_false", dest
='enable_relro')
75 gr
= opt
.option_group('developer options')
78 opt
.tool_options('python') # options for disabling pyc or pyo compilation
79 # enable options related to building python extensions
83 version
= samba_version
.load_version(env
=conf
.env
)
85 conf
.DEFINE('CONFIG_H_IS_FROM_SAMBA', 1)
86 conf
.DEFINE('_SAMBA_BUILD_', version
.MAJOR
, add_to_cflags
=True)
87 conf
.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags
=True)
89 if Options
.options
.developer
:
90 conf
.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD')
91 conf
.env
.DEVELOPER
= True
93 conf
.ADD_EXTRA_INCLUDES('#include/public #source4 #lib #source4/lib #source4/include #include #lib/replace')
95 conf
.RECURSE('lib/replace')
97 conf
.find_program('perl', var
='PERL', mandatory
=True)
98 conf
.find_program('xsltproc', var
='XSLTPROC')
100 conf
.SAMBA_CHECK_PYTHON(mandatory
=True, version
=(2,5,0))
101 conf
.SAMBA_CHECK_PYTHON_HEADERS(mandatory
=True)
103 if sys
.platform
== 'darwin' and not conf
.env
['HAVE_ENVIRON_DECL']:
104 # Mac OSX needs to have this and it's also needed that the python is compiled with this
105 # otherwise you face errors about common symbols
106 if not conf
.CHECK_SHLIB_W_PYTHON("Checking if -fno-common is needed"):
107 conf
.ADD_CFLAGS('-fno-common')
108 if not conf
.CHECK_SHLIB_W_PYTHON("Checking if -undefined dynamic_lookup is not need"):
109 conf
.env
.append_value('shlib_LINKFLAGS', ['-undefined', 'dynamic_lookup'])
111 if sys
.platform
== 'darwin':
112 conf
.ADD_LDFLAGS('-framework CoreFoundation')
114 if int(conf
.env
['PYTHON_VERSION'][0]) >= 3:
115 raise Utils
.WafError('Python version 3.x is not supported by Samba yet')
117 conf
.RECURSE('dynconfig')
118 conf
.RECURSE('lib/ldb')
120 if Options
.options
.with_system_mitkrb5
:
121 conf
.PROCESS_SEPARATE_RULE('system_mitkrb5')
122 if not (Options
.options
.without_ad_dc
or Options
.options
.with_system_mitkrb5
):
123 conf
.DEFINE('AD_DC_BUILD_IS_ENABLED', 1)
124 # Only process heimdal_build for non-MIT KRB5 builds
125 # When MIT KRB5 checks are done as above, conf.env.KRB5_VENDOR will be set
126 # to the lowcased output of 'krb5-config --vendor'.
127 # If it is not set or the output is 'heimdal', we are dealing with
128 # system-provided or embedded Heimdal build
129 if conf
.CONFIG_GET('KRB5_VENDOR') in (None, 'heimdal'):
130 conf
.RECURSE('source4/heimdal_build')
131 conf
.RECURSE('source4/lib/tls')
132 conf
.RECURSE('source4/ntvfs/sysdep')
133 conf
.RECURSE('lib/util')
134 conf
.RECURSE('lib/ccan')
135 conf
.RECURSE('lib/ntdb')
136 conf
.RECURSE('lib/zlib')
137 conf
.RECURSE('lib/util/charset')
138 conf
.RECURSE('source4/auth')
139 conf
.RECURSE('lib/nss_wrapper')
140 conf
.RECURSE('nsswitch')
141 conf
.RECURSE('lib/socket_wrapper')
142 conf
.RECURSE('lib/uid_wrapper')
143 conf
.RECURSE('lib/popt')
144 conf
.RECURSE('lib/iniparser/src')
145 conf
.RECURSE('lib/subunit/c')
146 conf
.RECURSE('libcli/smbreadline')
147 conf
.RECURSE('lib/crypto')
149 conf
.RECURSE('selftest')
150 conf
.RECURSE('source3')
152 conf
.SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS()
154 # gentoo always adds this. We want our normal build to be as
155 # strict as the strictest OS we support, so adding this here
156 # allows us to find problems on our development hosts faster.
157 # It also results in faster load time.
159 if not sys
.platform
.startswith("openbsd"):
160 conf
.env
.asneeded_ldflags
= conf
.ADD_LDFLAGS('-Wl,--as-needed', testflags
=True)
162 if not conf
.CHECK_NEED_LC("-lc not needed"):
163 conf
.ADD_LDFLAGS('-lc', testflags
=False)
165 # we don't want PYTHONDIR in config.h, as otherwise changing
166 # --prefix causes a complete rebuild
167 del(conf
.env
.defines
['PYTHONDIR'])
168 del(conf
.env
.defines
['PYTHONARCHDIR'])
170 if not conf
.CHECK_CODE('#include "tests/summary.c"',
171 define
='SUMMARY_PASSES',
173 msg
='Checking configure summary'):
174 raise Utils
.WafError('configure summary failed')
176 conf
.SAMBA_CONFIG_H('include/config.h')
178 if Options
.options
.enable_pie
!= False:
179 if Options
.options
.enable_pie
== True:
182 # not specified, only build PIEs if supported by compiler
184 if conf
.check_cc(cflags
='-fPIE', ldflags
='-pie', mandatory
=need_pie
,
185 msg
="Checking compiler for PIE support"):
186 conf
.env
['ENABLE_PIE'] = True
188 if Options
.options
.enable_relro
!= False:
189 if Options
.options
.enable_relro
== True:
192 # not specified, only build RELROs if supported by compiler
194 if conf
.check_cc(cflags
='', ldflags
='-Wl,-z,relro,-z,now', mandatory
=need_relro
,
195 msg
="Checking compiler for full RELRO support"):
196 conf
.env
['ENABLE_RELRO'] = True
199 '''build TAGS file using etags'''
201 source_root
= os
.path
.dirname(Utils
.g_module
.root_path
)
202 cmd
= 'rm -f %s/TAGS && (find %s -name "*.[ch]" | egrep -v \.inst\. | xargs -n 100 etags -a)' % (source_root
, source_root
)
203 print("Running: %s" % cmd
)
207 "build 'tags' file using ctags"
209 source_root
= os
.path
.dirname(Utils
.g_module
.root_path
)
210 cmd
= 'ctags --python-kinds=-i $(find %s -name "*.[ch]" | grep -v "*_proto\.h" | egrep -v \.inst\.) $(find %s -name "*.py")' % (source_root
, source_root
)
211 print("Running: %s" % cmd
)
214 # putting this here enabled build in the list
215 # of commands in --help
217 '''build all targets'''
218 samba_version
.load_version(env
=bld
.env
, is_install
=bld
.is_install
)
223 '''build python apidocs'''
224 bp
= os
.path
.abspath('bin/python')
226 for m
in ['talloc', 'tdb', 'ldb', 'ntdb']:
227 f
= os
.popen("PYTHONPATH=%s python -c 'import %s; print %s.__file__'" % (bp
, m
, m
), 'r')
229 mpaths
[m
] = f
.read().strip()
232 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' % (
233 bp
, mpaths
['tdb'], mpaths
['ldb'], mpaths
['talloc'], mpaths
['ntdb'])
234 print("Running: %s" % cmd
)
239 '''run pep8 validator'''
240 cmd
='PYTHONPATH=bin/python pep8 -r bin/python/samba'
241 print("Running: %s" % cmd
)
246 '''build wafsamba apidocs'''
247 from samba_utils
import recursive_dirlist
249 list = recursive_dirlist('../buildtools/wafsamba', '.', pattern
='*.py')
251 cmd
='PYTHONPATH=bin/python pydoctor --project-name=wafsamba --project-url=http://www.samba.org --make-html --docformat=restructuredtext'
254 cmd
+= ' --add-module %s' % f
255 print("Running: %s" % cmd
)
260 '''makes a tarball for distribution'''
261 sambaversion
= samba_version
.load_version(env
=None)
263 os
.system(srcdir
+ "/release-scripts/build-manpages-nogit")
264 samba_dist
.DIST_FILES('bin/docs:docs', extend
=True)
266 if sambaversion
.IS_SNAPSHOT
:
267 # write .distversion file and add to tar
268 if not os
.path
.isdir(blddir
):
270 distversionf
= tempfile
.NamedTemporaryFile(mode
='w', prefix
='.distversion',dir=blddir
)
271 for field
in sambaversion
.vcs_fields
:
272 distveroption
= field
+ '=' + str(sambaversion
.vcs_fields
[field
])
273 distversionf
.write(distveroption
+ '\n')
275 samba_dist
.DIST_FILES('%s:.distversion' % distversionf
.name
, extend
=True)
284 '''test that distribution tarball builds and installs'''
285 samba_version
.load_version(env
=None)
287 d
= Scripting
.distcheck
290 def wildcard_cmd(cmd
):
291 '''called on a unknown command'''
292 from samba_wildcard
import run_named_build_task
293 run_named_build_task(cmd
)
296 from samba_wildcard
import wildcard_main
297 wildcard_main(wildcard_cmd
)
298 Scripting
.main
= main
300 def reconfigure(ctx
):
301 '''reconfigure if config scripts have changed'''
303 samba_utils
.reconfigure(ctx
)