s3-waf: replace all - with _ in the configuration option names
[Samba/gebeck_regimport.git] / buildtools / wafsamba / samba3.py
blobaf8ddf710616fe6a0e525cada6d6aded380ade71
1 # a waf tool to add autoconf-like macros to the configure section
2 # and for SAMBA_ macros for building libraries, binaries etc
4 import Options
5 from optparse import SUPPRESS_HELP
7 def SAMBA3_ADD_OPTION(opt, option, help=(), dest=None, default=True,
8 with_name="with", without_name="without"):
9 if help == ():
10 help = ("Build with %s support" % option)
11 if dest is None:
12 dest = "with_%s" % option.replace('-', '_')
14 with_val = "--%s-%s" % (with_name, option)
15 without_val = "--%s-%s" % (without_name, option)
17 opt.add_option(with_val, help=help, action="store_true", dest=dest,
18 default=default)
19 opt.add_option(without_val, help=SUPPRESS_HELP, action="store_false",
20 dest=dest)
21 Options.Handler.SAMBA3_ADD_OPTION = SAMBA3_ADD_OPTION