mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
12 lines
370 B
Python
12 lines
370 B
Python
import Options
|
|
|
|
def set_options(opt):
|
|
opt.add_option('--enable-nss-wrapper',
|
|
help=("Turn on nss wrapper library (default=no)"),
|
|
action="store_true", dest='enable_nss_wrapper', default=False)
|
|
|
|
def configure(conf):
|
|
if Options.options.enable_nss_wrapper or Options.options.developer:
|
|
conf.DEFINE('NSS_WRAPPER', 1)
|
|
|