* curl 7.16.2 (NIXPKGS-55). The CXXCPP patch doesn't seem to be
necessary anymore. svn path=/nixpkgs/trunk/; revision=8742
This commit is contained in:
parent
bfbdd69b2f
commit
c44f77bbdf
pkgs/tools/networking/curl
|
@ -1,21 +0,0 @@
|
||||||
diff -ruN curl-7.12.2/configure curl-7.12.2-new/configure
|
|
||||||
--- curl-7.12.2/configure 2004-10-18 00:22:10.000000000 +0200
|
|
||||||
+++ curl-7.12.2-new/configure 2004-12-09 13:58:57.670095179 +0100
|
|
||||||
@@ -6835,11 +6835,12 @@
|
|
||||||
if $ac_preproc_ok; then
|
|
||||||
:
|
|
||||||
else
|
|
||||||
- { { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check
|
|
||||||
-See \`config.log' for more details." >&5
|
|
||||||
-echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check
|
|
||||||
-See \`config.log' for more details." >&2;}
|
|
||||||
- { (exit 1); exit 1; }; }
|
|
||||||
+ #{ { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check
|
|
||||||
+#See \`config.log' for more details." >&5
|
|
||||||
+#echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check
|
|
||||||
+#See \`config.log' for more details." >&2;}
|
|
||||||
+ #{ (exit 1); exit 1; }; }
|
|
||||||
+ :
|
|
||||||
fi
|
|
||||||
|
|
||||||
ac_ext=cc
|
|
|
@ -4,18 +4,19 @@ assert zlibSupport -> zlib != null;
|
||||||
assert sslSupport -> openssl != null;
|
assert sslSupport -> openssl != null;
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "curl-7.15.5";
|
name = "curl-7.16.2";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://nix.cs.uu.nl/dist/tarballs/curl-7.15.5.tar.bz2;
|
url = http://curl.haxx.se/download/curl-7.16.2.tar.bz2;
|
||||||
md5 = "594142c7d53bbdd988e8cef6354eeeff";
|
sha256 = "18mzp56y8qhlvi27av7866mvsiyiigb7c5qdppjr8qizsj0kx0rf";
|
||||||
};
|
};
|
||||||
buildInputs =
|
buildInputs =
|
||||||
(if zlibSupport then [zlib] else [])
|
stdenv.lib.optional zlibSupport zlib ++
|
||||||
++ (if sslSupport then [openssl] else []);
|
stdenv.lib.optional sslSupport openssl;
|
||||||
patches = [./configure-cxxcpp.patch];
|
|
||||||
configureFlags = "
|
configureFlags = "
|
||||||
${if sslSupport then "--with-ssl=${openssl}" else "--without-ssl"}
|
${if sslSupport then "--with-ssl=${openssl}" else "--without-ssl"}
|
||||||
";
|
";
|
||||||
CFLAGS = if stdenv ? isDietLibC then "-DHAVE_INET_NTOA_R_2_ARGS=1" else "";
|
CFLAGS = if stdenv ? isDietLibC then "-DHAVE_INET_NTOA_R_2_ARGS=1" else "";
|
||||||
|
CXX = "g++";
|
||||||
|
CXXCPP = "g++ -E";
|
||||||
inherit sslSupport openssl;
|
inherit sslSupport openssl;
|
||||||
}
|
}
|
Loading…
Reference in New Issue