summaryrefslogtreecommitdiff
path: root/source3/build/wscript
blob: a4df794f3a1cf0d3b5ebca1b27f71dad0503ffa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python

import Options
from dynconfig import *

def set_options(opt):
    # get all the basic GNU options from the gnu_dirs tool
    opt.tool_options('gnu_dirs')
    for option in dir_options.keys():
        default = dir_options[option][0]
        help    = dir_options[option][1]
        varname = get_varname(option)
        opt.add_option('--%s' % option,
                       help=(help + ' [%s]' % default),
                       action="store", dest=varname, default=default)

def configure(conf):
    # get all the basic GNU options from the gnu_dirs tool
    conf.check_tool('gnu_dirs')
    for option in dir_options.keys():
        varname = get_varname(option)
        value = getattr(Options.options, varname, None)
        conf.ASSERT(value is not None, "Missing configure option %s" % varname)
        conf.ASSERT(varname not in conf.env, "Variable %s already defined" % varname)
        conf.env[varname] = value

def build(bld):
    cflags = dynconfig_cflags(bld)
    bld.SAMBA_SUBSYSTEM('DYNCONFIG',
                        '../dynconfig.c',
                        deps='replace talloc tdb',
                        cflags=cflags)