- 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)
This commit is contained in:
parent
69ac7b0cf8
commit
4c8adc8fee
6
CHANGES
6
CHANGES
@ -6,6 +6,12 @@
|
|||||||
|
|
||||||
Changelog
|
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)
|
Kamil Dudka (15 Nov 2009)
|
||||||
- David Byron improved the configure script to use pkg-config to find OpenSSL
|
- 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
|
(and in particular the list of required libraries) even if a path is given
|
||||||
|
@ -21,6 +21,7 @@ This release includes the following bugfixes:
|
|||||||
o compilation when configured --with-gssapi having GNU GSS installed
|
o compilation when configured --with-gssapi having GNU GSS installed
|
||||||
o SSL connection reused with mismatched protection level
|
o SSL connection reused with mismatched protection level
|
||||||
o configure --with-nss is set but not "yes"
|
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:
|
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:
|
advice from friends like these:
|
||||||
|
|
||||||
Yang Tse, Kamil Dudka, Christian Schmitz, Constantine Sapuntzakis,
|
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)
|
Thanks! (and sorry if I forgot to mention someone)
|
||||||
|
@ -35,6 +35,6 @@ Name: libcurl
|
|||||||
URL: http://curl.haxx.se/
|
URL: http://curl.haxx.se/
|
||||||
Description: Library to transfer files with ftp, http, etc.
|
Description: Library to transfer files with ftp, http, etc.
|
||||||
Version: @VERSION@
|
Version: @VERSION@
|
||||||
Libs: -L${libdir} -lcurl @LDFLAGS@ @LIBS@
|
Libs: -L${libdir} -lcurl @LIBS@
|
||||||
Libs.private: @LIBCURL_LIBS@ @LIBS@
|
Libs.private: @LIBCURL_LIBS@ @LIBS@
|
||||||
Cflags: -I${includedir}
|
Cflags: -I${includedir}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user