mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
17 lines
475 B
Python
17 lines
475 B
Python
#!/usr/bin/env python
|
|
|
|
import Options
|
|
|
|
def set_options(opt):
|
|
gr = opt.option_group('developer options')
|
|
gr.add_option('--enable-uid-wrapper',
|
|
help=("Turn on uid wrapper library (default=no)"),
|
|
action="store_true", dest='enable_uid_wrapper', default=False)
|
|
|
|
def configure(conf):
|
|
if (Options.options.enable_uid_wrapper or
|
|
Options.options.developer or
|
|
Options.options.enable_selftest):
|
|
conf.DEFINE('UID_WRAPPER', 1)
|
|
|