mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
77a4fe495e
This is equiavalent to --enable-uid-wrapper --enable-nss-wrapper --enable-socket-wrapper but is easier to remember!
16 lines
432 B
Python
16 lines
432 B
Python
#!/usr/bin/env 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 or
|
|
Options.options.enable_selftest):
|
|
conf.DEFINE('UID_WRAPPER', 1)
|
|
|