2010-03-28 01:48:49 +03:00
#!/usr/bin/env python
2010-04-04 03:57:33 +04:00
APPNAME = 'talloc'
2010-04-02 12:19:12 +04:00
VERSION = '2.0.2'
2010-03-17 12:31:46 +03:00
2010-03-17 12:32:15 +03:00
blddir = 'bin'
2010-02-20 08:25:37 +03:00
2010-04-04 04:18:39 +04:00
# find the buildtools directory
import os
buildtools = 'buildtools ../../buildtools'
for d in buildtools.split():
if os.path.exists(d):
srcdir = os.path.dirname(d) or '.'
break
2010-03-17 12:32:15 +03:00
LIBREPLACE_DIR= srcdir + '/lib/replace'
2010-03-17 12:31:46 +03:00
2010-03-28 08:42:28 +04:00
import sys
sys.path.insert(0, srcdir+"/buildtools/wafsamba")
2010-04-04 03:57:33 +04:00
import wafsamba, samba_dist
2010-03-28 08:42:28 +04:00
2010-02-20 08:25:37 +03:00
def set_options(opt):
2010-03-28 08:42:28 +04:00
opt.BUILTIN_DEFAULT('replace')
opt.BUNDLED_EXTENSION_DEFAULT('talloc', noextenion='talloc')
2010-03-17 12:31:46 +03:00
opt.recurse(LIBREPLACE_DIR)
2010-02-20 08:25:37 +03:00
def configure(conf):
2010-04-04 04:06:34 +04:00
conf.DIST_DIRS('lib/talloc:. lib/replace:lib/replace buildtools:buildtools')
2010-03-17 12:31:46 +03:00
conf.sub_config(LIBREPLACE_DIR)
2010-03-28 09:38:27 +04:00
2010-03-29 15:27:17 +04:00
if conf.CHECK_BUNDLED_SYSTEM('talloc', minversion=VERSION,
implied_deps='replace'):
2010-03-28 09:38:27 +04:00
conf.define('USING_SYSTEM_TALLOC', 1)
2010-04-03 16:26:35 +04:00
conf.env.standalone_talloc = conf.IN_LAUNCH_DIR()
2010-03-17 12:31:46 +03:00
conf.SAMBA_CONFIG_H()
2010-02-20 08:25:37 +03:00
2010-03-28 09:38:27 +04:00
2010-02-20 08:25:37 +03:00
def build(bld):
2010-02-23 03:16:44 +03:00
bld.BUILD_SUBDIR(LIBREPLACE_DIR)
2010-02-20 08:25:37 +03:00
2010-03-28 09:38:27 +04:00
if not bld.CONFIG_SET('USING_SYSTEM_TALLOC'):
bld.SAMBA_LIBRARY('talloc',
'talloc.c',
deps='replace',
vnum=VERSION)
2010-02-20 08:25:37 +03:00
2010-03-29 11:48:50 +04:00
if not getattr(bld.env, '_SAMBA_BUILD_', 0) == 4:
# s4 already has the talloc testsuite builtin to smbtorture
bld.SAMBA_BINARY('talloc_testsuite',
'testsuite_main.c testsuite.c',
deps='talloc',
install=False)
2010-04-03 16:26:35 +04:00
if bld.env.standalone_talloc:
bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
bld.env.TALLOC_VERSION = VERSION
bld.PKG_CONFIG_FILES('talloc.pc', vnum=VERSION)
2010-04-04 03:57:33 +04:00
def dist():
'''makes a tarball for distribution'''
samba_dist.dist()