mirror of
https://github.com/moparisthebest/curl
synced 2024-11-11 03:55:03 -05:00
Fixed a problem with m4 quoting in the OpenSSL configure check reported
by Daniel Johnson.
This commit is contained in:
parent
49c6d7e32d
commit
b98e0aa09b
4
CHANGES
4
CHANGES
@ -6,6 +6,10 @@
|
|||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
|
Daniel Fandrich (4 Mar 2009)
|
||||||
|
- Fixed a problem with m4 quoting in the OpenSSL configure check reported
|
||||||
|
by Daniel Johnson.
|
||||||
|
|
||||||
Daniel Stenberg (3 Mar 2009)
|
Daniel Stenberg (3 Mar 2009)
|
||||||
- David James brought a patch that make libcurl close (all) dead connections
|
- David James brought a patch that make libcurl close (all) dead connections
|
||||||
whenever you attempt to open a new connection.
|
whenever you attempt to open a new connection.
|
||||||
|
@ -1171,7 +1171,7 @@ if test X"$OPT_SSL" != Xno; then
|
|||||||
PKGTEST="no"
|
PKGTEST="no"
|
||||||
PREFIX_OPENSSL=$OPT_SSL
|
PREFIX_OPENSSL=$OPT_SSL
|
||||||
LIB_OPENSSL="$PREFIX_OPENSSL/lib$libsuff"
|
LIB_OPENSSL="$PREFIX_OPENSSL/lib$libsuff"
|
||||||
if [ "$PREFIX_OPENSSL" != "/usr" ] ; then
|
if test "$PREFIX_OPENSSL" != "/usr" ; then
|
||||||
LDFLAGS="$LDFLAGS -L$LIB_OPENSSL"
|
LDFLAGS="$LDFLAGS -L$LIB_OPENSSL"
|
||||||
CPPFLAGS="$CPPFLAGS -I$PREFIX_OPENSSL/include"
|
CPPFLAGS="$CPPFLAGS -I$PREFIX_OPENSSL/include"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user