From c274d068e46fc10cc9aabff51fdb7a6e6ac710c7 Mon Sep 17 00:00:00 2001
From: Eelco Dolstra <eelco.dolstra@logicblox.com>
Date: Wed, 22 Apr 2009 23:15:00 +0000
Subject: [PATCH] * Fix neon.

svn path=/nixpkgs/branches/stdenv-updates/; revision=15261
---
 pkgs/development/libraries/neon/0.26.nix | 1 +
 pkgs/development/libraries/neon/0.28.nix | 1 +
 2 files changed, 2 insertions(+)

diff --git a/pkgs/development/libraries/neon/0.26.nix b/pkgs/development/libraries/neon/0.26.nix
index 0a78d7a02a48..c6dde2253bc8 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 ff777688565b..8373ed25d248 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;};