Enabling most xcache settings

svn path=/nixpkgs/trunk/; revision=27296
This commit is contained in:
Lluís Batlle i Rossell 2011-05-24 15:23:04 +00:00
parent a2579704f1
commit 6ec672232a

View file

@ -14,9 +14,14 @@ stdenv.mkDerivation rec {
sed -i 's,^EXTENSION_DIR.*,'EXTENSION_DIR=$out/lib/php/extensions, configure
'';
/*
configureFlags = [ "--enable-apc" "--enable-apc-mmap" ];
*/
configureFlags = [
"--enable-xcache"
"--enable-xcache-coverager"
"--enable-xcache-optimizer"
"--enable-xcache-assembler"
"--enable-xcache-encoder"
"--enable-xcache-decoder"
];
buildInputs = [ php autoconf automake libtool m4 ];