php53: add imap option

This commit is contained in:
Jason \"Don\" O'Conal
2013-07-04 13:12:13 +02:00
committed by Rok Garbas
parent 9007e57f28
commit 1f9005a3f6
2 changed files with 11 additions and 14 deletions
+3 -1
View File
@@ -8,7 +8,9 @@ stdenv.mkDerivation {
sha256 = "0a2a00hbakh0640r2wdpnwr8789z59wnk7rfsihh3j0vbhmmmqak";
};
makeFlags = "lnp"; # Linux with PAM modules
makeFlags = "lnp" # Linux with PAM modules
# -fPIC is required to compile php with imap on x86_64 systems
+ stdenv.lib.optionalString stdenv.isx86_64 " EXTRACFLAGS=-fPIC";
buildInputs = [ pam openssl ];