1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-11 03:55:03 -05:00

- Claes Jakobsson fixed the configure script to better find and use NSS

without pkg-config.
This commit is contained in:
Daniel Stenberg 2009-06-01 09:40:09 +00:00
parent e3c37aac28
commit 9dcc1b3370
3 changed files with 7 additions and 2 deletions

View File

@ -6,6 +6,10 @@
Changelog Changelog
Daniel Stenberg (1 June 2009)
- Claes Jakobsson fixed the configure script to better find and use NSS
without pkg-config.
Yang Tse (1 Jun 2009) Yang Tse (1 Jun 2009)
- John E. Malmberg provided a VMS specific clean-up for curl.h, and pointed - John E. Malmberg provided a VMS specific clean-up for curl.h, and pointed
out that the configure script was failing to detect the timeval struct on out that the configure script was failing to detect the timeval struct on

View File

@ -17,6 +17,7 @@ This release includes the following bugfixes:
o leaking cookie memory when duplicate domains or paths were used o leaking cookie memory when duplicate domains or paths were used
o build fix for Symbian o build fix for Symbian
o CURLOPT_USERPWD set to NULL clears auth credentials o CURLOPT_USERPWD set to NULL clears auth credentials
o libcurl-NSS build fixes
o libcurl-NSS build fix o libcurl-NSS build fix
o configure script fixed for VMS o configure script fixed for VMS

View File

@ -1663,10 +1663,10 @@ if test "$OPENSSL_ENABLED" != "1" -a "$GNUTLS_ENABLED" != "1"; then
fi fi
else else
# Without pkg-config, we'll kludge in some defaults # Without pkg-config, we'll kludge in some defaults
addlib="-lssl3 -lsmime3 -lnss3 -lplds4 -lplc4 -lnspr4 -lpthread -ldl" addlib="-L$OPT_NSS/lib -lssl3 -lsmime3 -lnss3 -lplds4 -lplc4 -lnspr4 -lpthread -ldl"
addcflags="-I$OPT_NSS/include" addcflags="-I$OPT_NSS/include"
version="unknown" version="unknown"
gtlsprefix=$OPT_GNUTLS nssprefix=$OPT_NSS
fi fi
dnl Check for functionPK11_CreateGenericObject dnl Check for functionPK11_CreateGenericObject