Merge pull request #28038 from DerTim1/openldap-add-crypt

openldap: enable crypt
This commit is contained in:
Jörg Thalheim 2017-08-12 08:48:01 +01:00 committed by GitHub
commit 4c49205676

View file

@ -20,6 +20,7 @@ stdenv.mkDerivation rec {
"--disable-dependency-tracking" # speeds up one-time build
"--enable-modules"
"--sysconfdir=/etc"
"--enable-crypt"
] ++ stdenv.lib.optional (openssl == null) "--without-tls"
++ stdenv.lib.optional (cyrus_sasl == null) "--without-cyrus-sasl"
++ stdenv.lib.optional stdenv.isFreeBSD "--with-pic";