talloc: Install pytalloc.h.
[samba.git] / lib / talloc / wscript
1 #!/usr/bin/env python
2
3 APPNAME = 'talloc'
4 VERSION = '2.0.3'
5
6
7 blddir = 'bin'
8
9 import Logs
10 import os, sys
11
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')
17
18 import sys
19 sys.path.insert(0, srcdir+"/buildtools/wafsamba")
20 import wafsamba, samba_dist, Options
21
22 # setup what directories to put in a tarball
23 samba_dist.DIST_DIRS('lib/talloc:. lib/replace:lib/replace buildtools:buildtools')
24
25
26 def set_options(opt):
27     opt.BUILTIN_DEFAULT('replace')
28     opt.PRIVATE_EXTENSION_DEFAULT('talloc', noextension='talloc')
29     opt.RECURSE('lib/replace')
30     opt.add_option('--enable-talloc-compat1',
31                    help=("Build talloc 1.x.x compat library [False]"),
32                    action="store_true", dest='TALLOC_COMPAT1', default=False)
33     if opt.IN_LAUNCH_DIR():
34         opt.add_option('--disable-python',
35                        help=("disable the pytevent module"),
36                        action="store_true", dest='disable_python', default=False)
37
38
39 def configure(conf):
40     conf.RECURSE('lib/replace')
41
42     conf.env.standalone_talloc = conf.IN_LAUNCH_DIR()
43
44     conf.env.disable_python = getattr(Options.options, 'disable_python', False)
45
46     if not conf.env.standalone_talloc:
47         if conf.CHECK_BUNDLED_SYSTEM('talloc', minversion=VERSION,
48                                      implied_deps='replace'):
49             conf.define('USING_SYSTEM_TALLOC', 1)
50         if conf.CHECK_BUNDLED_SYSTEM('pytalloc-util', minversion=VERSION,
51                                      implied_deps='talloc replace'):
52             conf.define('USING_SYSTEM_PYTALLOC_UTIL', 1)
53
54     conf.env.TALLOC_COMPAT1 = Options.options.TALLOC_COMPAT1
55
56     conf.CHECK_XSLTPROC_MANPAGES()
57
58     if not conf.env.disable_python:
59         # also disable if we don't have the python libs installed
60         conf.check_tool('python')
61         conf.check_python_version((2,4,2))
62         conf.check_python_headers(mandatory=False)
63         if not conf.env.HAVE_PYTHON_H:
64             Logs.warn('Disabling pytalloc-util as python devel libs not found')
65             conf.env.disable_python = True
66
67     conf.SAMBA_CONFIG_H()
68
69
70 def build(bld):
71     bld.RECURSE('lib/replace')
72
73     if bld.env.standalone_talloc:
74         bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
75         bld.env.TALLOC_VERSION = VERSION
76         bld.PKG_CONFIG_FILES('talloc.pc', vnum=VERSION)
77         bld.INSTALL_FILES('${INCLUDEDIR}', 'talloc.h')
78         private_library = False
79         vnum = VERSION
80
81         # should we also install the symlink to libtalloc1.so here?
82         bld.SAMBA_LIBRARY('talloc-compat1-%s' % (VERSION),
83                           'compat/talloc_compat1.c',
84                           public_deps='talloc',
85                           soname='libtalloc.so.1',
86                           enabled=bld.env.TALLOC_COMPAT1)
87
88         if not bld.env.disable_python:
89             bld.PKG_CONFIG_FILES('pytalloc-util.pc', vnum=VERSION)
90     else:
91         private_library = True
92         vnum = None
93
94     if not bld.CONFIG_SET('USING_SYSTEM_TALLOC'):
95
96         bld.SAMBA_LIBRARY('talloc',
97                           'talloc.c',
98                           deps='replace',
99                           abi_file='ABI/talloc-%s.sigs' % VERSION,
100                           abi_match='talloc* _talloc*',
101                           hide_symbols=True,
102                           vnum=vnum,
103                           private_library=private_library,
104                           manpages='talloc.3')
105
106     if not bld.CONFIG_SET('USING_SYSTEM_PYTALLOC_UTIL') and not bld.env.disable_python:
107
108         bld.SAMBA_LIBRARY('pytalloc-util',
109             source='pytalloc.c',
110             public_deps='talloc',
111             pyext=True,
112             vnum=VERSION,
113             )
114         bld.INSTALL_FILES('${INCLUDEDIR}', 'pytalloc.h')
115
116     if not getattr(bld.env, '_SAMBA_BUILD_', 0) == 4:
117         # s4 already has the talloc testsuite builtin to smbtorture
118         bld.SAMBA_BINARY('talloc_testsuite',
119                          'testsuite_main.c testsuite.c',
120                          deps='talloc',
121                          install=False)
122
123
124 def test(ctx):
125     '''run talloc testsuite'''
126     import Utils, samba_utils
127     cmd = os.path.join(Utils.g_module.blddir, 'talloc_testsuite')
128     ret = samba_utils.RUN_COMMAND(cmd)
129     print("testsuite returned %d" % ret)
130     sys.exit(ret)
131
132 def dist():
133     '''makes a tarball for distribution'''
134     samba_dist.dist()