librpc: Shorten dcerpc_binding_handle_call a bit
[Samba/gebeck_regimport.git] / lib / talloc / wscript
blobecc5e24d4755f2dd08e202d998f4eff403821b91
1 #!/usr/bin/env python
3 APPNAME = 'talloc'
4 VERSION = '2.0.8'
7 blddir = 'bin'
9 import Logs
10 import os, sys
12 # find the buildtools directory
13 srcdir = '.'
14 while not os.path.exists(srcdir+'/buildtools') and len(srcdir.split('/')) < 5:
15 srcdir = '../' + srcdir
16 sys.path.insert(0, srcdir + '/buildtools/wafsamba')
18 import sys
19 sys.path.insert(0, srcdir+"/buildtools/wafsamba")
20 import wafsamba, samba_dist, Options
22 # setup what directories to put in a tarball
23 samba_dist.DIST_DIRS('lib/talloc:. lib/replace:lib/replace buildtools:buildtools')
26 def set_options(opt):
27 opt.BUILTIN_DEFAULT('replace')
28 opt.PRIVATE_EXTENSION_DEFAULT('talloc', noextension='talloc')
29 opt.RECURSE('lib/replace')
30 if opt.IN_LAUNCH_DIR():
31 opt.add_option('--enable-talloc-compat1',
32 help=("Build talloc 1.x.x compat library [False]"),
33 action="store_true", dest='TALLOC_COMPAT1', default=False)
34 opt.add_option('--disable-python',
35 help=("disable the pytalloc module"),
36 action="store_true", dest='disable_python', default=False)
39 def configure(conf):
40 conf.RECURSE('lib/replace')
42 conf.env.standalone_talloc = conf.IN_LAUNCH_DIR()
44 conf.env.disable_python = getattr(Options.options, 'disable_python', False)
46 if not conf.env.standalone_talloc:
47 if conf.CHECK_BUNDLED_SYSTEM_PKG('talloc', minversion=VERSION,
48 implied_deps='replace'):
49 conf.define('USING_SYSTEM_TALLOC', 1)
50 if conf.CHECK_BUNDLED_SYSTEM_PKG('pytalloc-util', minversion=VERSION,
51 implied_deps='talloc replace'):
52 conf.define('USING_SYSTEM_PYTALLOC_UTIL', 1)
54 conf.env.TALLOC_COMPAT1 = False
55 if conf.env.standalone_talloc:
56 conf.env.TALLOC_COMPAT1 = Options.options.TALLOC_COMPAT1
58 conf.CHECK_XSLTPROC_MANPAGES()
60 if not conf.env.disable_python:
61 # also disable if we don't have the python libs installed
62 conf.find_program('python', var='PYTHON')
63 conf.check_tool('python')
64 conf.check_python_version((2,4,2))
65 conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=False)
66 if not conf.env.HAVE_PYTHON_H:
67 Logs.warn('Disabling pytalloc-util as python devel libs not found')
68 conf.env.disable_python = True
70 conf.SAMBA_CONFIG_H()
72 conf.SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS()
75 def build(bld):
76 bld.RECURSE('lib/replace')
78 if bld.env.standalone_talloc:
79 bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
80 bld.env.TALLOC_VERSION = VERSION
81 private_library = False
83 # should we also install the symlink to libtalloc1.so here?
84 bld.SAMBA_LIBRARY('talloc-compat1-%s' % (VERSION),
85 'compat/talloc_compat1.c',
86 public_deps='talloc',
87 soname='libtalloc.so.1',
88 pc_files=[],
89 public_headers=[],
90 enabled=bld.env.TALLOC_COMPAT1)
92 bld.SAMBA_BINARY('talloc_testsuite',
93 'testsuite_main.c testsuite.c',
94 deps='talloc',
95 install=False)
97 else:
98 private_library = True
100 if not bld.CONFIG_SET('USING_SYSTEM_TALLOC'):
102 bld.SAMBA_LIBRARY('talloc',
103 'talloc.c',
104 deps='replace',
105 abi_directory='ABI',
106 abi_match='talloc* _talloc*',
107 hide_symbols=True,
108 vnum=VERSION,
109 public_headers='talloc.h',
110 pc_files='talloc.pc',
111 public_headers_install=not private_library,
112 private_library=private_library,
113 manpages='man/talloc.3')
115 if not bld.CONFIG_SET('USING_SYSTEM_PYTALLOC_UTIL') and not bld.env.disable_python:
116 bld.SAMBA_LIBRARY('pytalloc-util',
117 source='pytalloc_util.c',
118 public_deps='talloc',
119 pyembed=True,
120 vnum=VERSION,
121 hide_symbols=True,
122 abi_directory='ABI',
123 abi_match='pytalloc_*',
124 private_library=private_library,
125 public_headers='pytalloc.h',
126 pc_files='pytalloc-util.pc'
128 bld.SAMBA_PYTHON('pytalloc',
129 'pytalloc.c',
130 deps='talloc pytalloc-util',
131 enabled=True,
132 realname='talloc.so')
134 def test(ctx):
135 '''run talloc testsuite'''
136 import Utils, samba_utils
137 cmd = os.path.join(Utils.g_module.blddir, 'talloc_testsuite')
138 ret = samba_utils.RUN_COMMAND(cmd)
139 print("testsuite returned %d" % ret)
140 sys.exit(ret)
142 def dist():
143 '''makes a tarball for distribution'''
144 samba_dist.dist()
146 def reconfigure(ctx):
147 '''reconfigure if config scripts have changed'''
148 import samba_utils
149 samba_utils.reconfigure(ctx)
152 def pydoctor(ctx):
153 '''build python apidocs'''
154 cmd='PYTHONPATH=bin/python pydoctor --project-name=talloc --project-url=http://talloc.samba.org/ --make-html --docformat=restructuredtext --introspect-c-modules --add-module bin/python/talloc.*'
155 print("Running: %s" % cmd)
156 os.system(cmd)