PHP enable SOAP and openssl support

svn path=/nixpkgs/trunk/; revision=15953
This commit is contained in:
Marc Weber 2009-06-14 01:30:04 +00:00
parent 143787ad74
commit 959342d209
1 changed files with 6 additions and 1 deletions

View File

@ -78,6 +78,10 @@ composableDerivation {} ( fixed : {
buildInputs = [gd]; buildInputs = [gd];
}; };
soap = {
configureFlags = ["--enable-soap"];
};
sockets = { sockets = {
configureFlags = ["--enable-sockets"]; configureFlags = ["--enable-sockets"];
}; };
@ -121,8 +125,9 @@ composableDerivation {} ( fixed : {
gettextSupport = true; gettextSupport = true;
postgresqlSupport = true; postgresqlSupport = true;
sqliteSupport = true; sqliteSupport = true;
soapSupport = true;
zlibSupport = true; zlibSupport = true;
opnesslSupport = true; opensslSupport = true;
xdebugSupport = true; xdebugSupport = true;
mbstringSupport = true; mbstringSupport = true;
gdSupport = true; gdSupport = true;