diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2009-03-04 08:09:39 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2009-03-04 08:09:39 +0000 |
commit | b98e0aa09b39e8159b30469997aa92474a5f0032 (patch) | |
tree | fa251a318ccc5e6be613bdc5c8d16b60f457fd19 | |
parent | 49c6d7e32d5ff020f42ad3b0b5cacc11d997eabb (diff) |
Fixed a problem with m4 quoting in the OpenSSL configure check reported
by Daniel Johnson.
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -6,6 +6,10 @@ 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) - David James brought a patch that make libcurl close (all) dead connections whenever you attempt to open a new connection. diff --git a/configure.ac b/configure.ac index f81799121..58624a2dd 100644 --- a/configure.ac +++ b/configure.ac @@ -1171,7 +1171,7 @@ if test X"$OPT_SSL" != Xno; then PKGTEST="no" PREFIX_OPENSSL=$OPT_SSL LIB_OPENSSL="$PREFIX_OPENSSL/lib$libsuff" - if [ "$PREFIX_OPENSSL" != "/usr" ] ; then + if test "$PREFIX_OPENSSL" != "/usr" ; then LDFLAGS="$LDFLAGS -L$LIB_OPENSSL" CPPFLAGS="$CPPFLAGS -I$PREFIX_OPENSSL/include" fi |