summary refs log tree commit diff
path: root/pkgs/development/libraries/neon
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-22 23:15:00 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-22 23:15:00 +0000
commitc274d068e46fc10cc9aabff51fdb7a6e6ac710c7 (patch)
tree8f36c1ca5f2adb6931dd34e7adbccff1c612e187 /pkgs/development/libraries/neon
parenteaac5230f2265461158cf9ba6b9e69039e516e65 (diff)
downloadnixpkgs-c274d068e46fc10cc9aabff51fdb7a6e6ac710c7.tar
nixpkgs-c274d068e46fc10cc9aabff51fdb7a6e6ac710c7.tar.gz
nixpkgs-c274d068e46fc10cc9aabff51fdb7a6e6ac710c7.tar.bz2
nixpkgs-c274d068e46fc10cc9aabff51fdb7a6e6ac710c7.tar.lz
nixpkgs-c274d068e46fc10cc9aabff51fdb7a6e6ac710c7.tar.xz
nixpkgs-c274d068e46fc10cc9aabff51fdb7a6e6ac710c7.tar.zst
nixpkgs-c274d068e46fc10cc9aabff51fdb7a6e6ac710c7.zip
* Fix neon.
svn path=/nixpkgs/branches/stdenv-updates/; revision=15261
Diffstat (limited to 'pkgs/development/libraries/neon')
-rw-r--r--pkgs/development/libraries/neon/0.26.nix1
-rw-r--r--pkgs/development/libraries/neon/0.28.nix1
2 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/neon/0.26.nix b/pkgs/development/libraries/neon/0.26.nix
index 0a78d7a02a4..c6dde2253bc 100644
--- a/pkgs/development/libraries/neon/0.26.nix
+++ b/pkgs/development/libraries/neon/0.26.nix
@@ -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;};
diff --git a/pkgs/development/libraries/neon/0.28.nix b/pkgs/development/libraries/neon/0.28.nix
index ff777688565..8373ed25d24 100644
--- a/pkgs/development/libraries/neon/0.28.nix
+++ b/pkgs/development/libraries/neon/0.28.nix
@@ -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;};