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'
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')
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
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')
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')
133 '''build TAGS file using etags'''
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
)
141 "build 'tags' file using ctags"
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
)
148 # putting this here enabled build in the list
149 # of commands in --help
151 '''build all targets'''
152 samba_version
.load_version(env
=bld
.env
, is_install
=bld
.is_install
)
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
)
163 '''build wafsamba apidocs'''
164 from samba_utils
import recursive_dirlist
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'
171 cmd
+= ' --add-module %s' % f
172 print("Running: %s" % cmd
)
177 '''makes a tarball for distribution'''
178 samba_version
.load_version(env
=None)
182 '''test that distribution tarball builds and installs'''
183 samba_version
.load_version(env
=None)
185 d
= Scripting
.distcheck
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
)
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'''
201 samba_utils
.reconfigure(ctx
)