samba: add option enableProfiling
This commit is contained in:
parent
911179ef65
commit
4b2da39fff
1 changed files with 3 additions and 1 deletions
|
@ -27,6 +27,7 @@
|
|||
|
||||
, enableLDAP ? false, openldap
|
||||
, enablePrinting ? false, cups
|
||||
, enableProfiling ? true
|
||||
, enableMDNS ? false, avahi
|
||||
, enableDomainController ? false, gpgme, lmdb
|
||||
, enableKerberos ? true, krb5Full
|
||||
|
@ -123,7 +124,8 @@ stdenv.mkDerivation rec {
|
|||
] ++ optionals (!enableLDAP) [
|
||||
"--without-ldap"
|
||||
"--without-ads"
|
||||
] ++ optional (!enableAcl) "--without-acl-support"
|
||||
] ++ optional enableProfiling "--with-profiling-data"
|
||||
++ optional (!enableAcl) "--without-acl-support"
|
||||
++ optional (!enablePam) "--without-pam";
|
||||
|
||||
preBuild = ''
|
||||
|
|
Loading…
Reference in a new issue