]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
- Marc Kleine-Budde fixed: curl saved the LDFLAGS set during configure into
authorDaniel Stenberg <daniel@haxx.se>
Tue, 17 Nov 2009 18:11:06 +0000 (18:11 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 17 Nov 2009 18:11:06 +0000 (18:11 +0000)
  its pkg-config file.  So -Wl stuff ended up in the .pc file, which is really
  bad, and breaks if there are multiple -Wl in our LDFLAGS (which are in
  PTXdist). bug #2893592 (http://curl.haxx.se/bug/view.cgi?id=2893592)

CHANGES
RELEASE-NOTES
libcurl.pc.in

diff --git a/CHANGES b/CHANGES
index 021bbb6db9351b45ca6ee0f3db4225c6f2f9b349..f3624414eaa934665133c56f5b7796b2ec258e99 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,12 @@
 
                                   Changelog
 
+Daniel Stenberg (17 Nov 2009)
+- Marc Kleine-Budde fixed: curl saved the LDFLAGS set during configure into
+  its pkg-config file.  So -Wl stuff ended up in the .pc file, which is really
+  bad, and breaks if there are multiple -Wl in our LDFLAGS (which are in
+  PTXdist). bug #2893592 (http://curl.haxx.se/bug/view.cgi?id=2893592)
+
 Kamil Dudka (15 Nov 2009)
 - David Byron improved the configure script to use pkg-config to find OpenSSL
   (and in particular the list of required libraries) even if a path is given
index 851e68cc47789e6cb59ecbee8a209160125a5c8f..4d43e10d9e4e51ca383cf3676a85633a97bae604 100644 (file)
@@ -21,6 +21,7 @@ This release includes the following bugfixes:
  o compilation when configured --with-gssapi having GNU GSS installed
  o SSL connection reused with mismatched protection level
  o configure --with-nss is set but not "yes"
+ o don't store LDFLAGS in pkg-config file
 
 This release includes the following known bugs:
 
@@ -30,6 +31,7 @@ This release would not have looked like this without help, code, reports and
 advice from friends like these:
 
  Yang Tse, Kamil Dudka, Christian Schmitz, Constantine Sapuntzakis,
- Marco Maggi, Camille Moncelier, Claes Jakobsson, Kevin Baughman
+ Marco Maggi, Camille Moncelier, Claes Jakobsson, Kevin Baughman,
+ Marc Kleine-Budde
 
         Thanks! (and sorry if I forgot to mention someone)
index eaf8537819d01a0701f5cce3eef6689c434430e5..80fb8f9d5fe44204898704c3f5ded5df3a58e1c4 100644 (file)
@@ -35,6 +35,6 @@ Name: libcurl
 URL: http://curl.haxx.se/
 Description: Library to transfer files with ftp, http, etc.
 Version: @VERSION@
-Libs: -L${libdir} -lcurl @LDFLAGS@ @LIBS@
+Libs: -L${libdir} -lcurl @LIBS@
 Libs.private: @LIBCURL_LIBS@ @LIBS@
 Cflags: -I${includedir}