reenable curl support for php

-lssl was missing

svn path=/nixpkgs/trunk/; revision=15327
This commit is contained in:
Marc Weber 2009-04-27 01:18:03 +00:00
parent e037b8ad2c
commit 761e653515

View File

@ -25,7 +25,7 @@ composableDerivation {} ( fixed : {
curl = { curl = {
configureFlags = ["--with-curl=${args.curl}" "--with-curlwrappers"]; configureFlags = ["--with-curl=${args.curl}" "--with-curlwrappers"];
buildInputs = [curl]; buildInputs = [curl openssl];
}; };
zlib = { zlib = {
@ -112,7 +112,7 @@ composableDerivation {} ( fixed : {
apxs2Support = true; apxs2Support = true;
bcmathSupport = true; bcmathSupport = true;
socketsSupport = true; socketsSupport = true;
curlSupport = false; curlSupport = true;
gettextSupport = true; gettextSupport = true;
postgresqlSupport = true; postgresqlSupport = true;
zlibSupport = true; zlibSupport = true;