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