aboutsummaryrefslogtreecommitdiff
path: root/RELEASE-NOTES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2010-03-02 22:02:56 +0000
committerDaniel Stenberg <daniel@haxx.se>2010-03-02 22:02:56 +0000
commit013d5a72d47d14000c6022cdf70c1cc3275a0476 (patch)
tree8213548f790942c5e490340470241bc273706fbf /RELEASE-NOTES
parent9b2cce236fa7dac594d1337b9b83bc88debf1871 (diff)
- [Daniel Johnson] I've been trying to build libcurl with clang on Darwin and
ran into some issues with the GSSAPI tests in configure.ac. The tests first try to determine the include dirs and libs and set CPPFLAGS and LIBS accordingly. It then checks for the headers and finally sets LIBS a second time, causing the libs to be included twice. The first setting of LIBS seems redundant and should be left out, since the first part is otherwise just about finding headers. My second issue is that 'krb5-config --libs gssapi' on Darwin is less than useless and returns junk that, while it happens to work with gcc, causes clang to choke. For example, --libs returns $CFLAGS along with the libs, which is really retarded. Simply setting 'LIBS="$LIBS -lgssapi_krb5 -lresolv"' on Darwin is sufficient.
Diffstat (limited to 'RELEASE-NOTES')
-rw-r--r--RELEASE-NOTES3
1 files changed, 2 insertions, 1 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 4a6b353d0..b96171cc5 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -27,6 +27,7 @@ This release includes the following bugfixes:
o skip poll() on Interix
o CURLOPT_CERTINFO memory leak
o sub-second timeouts improvements
+ o configure fixes for GSSAPI
This release includes the following known bugs:
@@ -37,6 +38,6 @@ advice from friends like these:
Steven M. Schweda, Yang Tse, Jack Zhang, Tom Donovan, Martin Hager,
Daniel Fandrich, Patrick Monnerat, Pat Ray, Wesley Miaw, Ben Greear,
- Ryan Chan, Markus Duft, Andrei Benea, Jacob Moshenko
+ Ryan Chan, Markus Duft, Andrei Benea, Jacob Moshenko, Daniel Johnson
Thanks! (and sorry if I forgot to mention someone)