* Fix neon.

svn path=/nixpkgs/branches/stdenv-updates/; revision=15261
This commit is contained in:
Eelco Dolstra 2009-04-22 23:15:00 +00:00
parent eaac5230f2
commit c274d068e4
2 changed files with 2 additions and 0 deletions

View file

@ -19,6 +19,7 @@ stdenv.mkDerivation {
configureFlags = ''
${if compressionSupport then "--with-zlib" else "--without-zlib"}
${if sslSupport then "--with-ssl --with-libs=${openssl}" else "--without-ssl"}
--enable-shared
'';
passthru = {inherit compressionSupport sslSupport;};

View file

@ -24,6 +24,7 @@ stdenv.mkDerivation {
${if static then "--enable-static" else "--disable-static"}
${if compressionSupport then "--with-zlib" else "--without-zlib"}
${if sslSupport then "--with-ssl --with-libs=${openssl}" else "--without-ssl"}
--enable-shared
'';
passthru = {inherit compressionSupport sslSupport;};