mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
12 lines
370 B
Python
12 lines
370 B
Python
import Options
|
|
|
|
def set_options(opt):
|
|
opt.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:
|
|
conf.DEFINE('UID_WRAPPER', 1)
|
|
|