aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-12-11 07:38:47 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-12-11 07:38:47 +0000
commitdde277d86abfc1de8a19e8001ae7334d93febbb3 (patch)
tree501860488c772ab841ac72fa15f70aa24fc07126 /configure.in
parenta5146c7297323f278a290db9459c7ebce12a1a2e (diff)
Albert Chin-A-Young fixed the SSL option to use LDFLAGS properly
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 1a5948b00..5fab264b2 100644
--- a/configure.in
+++ b/configure.in
@@ -397,7 +397,8 @@ else
AC_MSG_RESULT([defaults (or given in environment)])
else
test X"$OPT_SSL" = Xyes && OPT_SSL=/usr/local/ssl
- LIBS="$LIBS -L$OPT_SSL/lib"
+ dnl LIBS="$LIBS -L$OPT_SSL/lib"
+ LDFLAGS="$LDFLAGS -L$OPT_SSL/lib"
CPPFLAGS="$CPPFLAGS -I$OPT_SSL/include/openssl -I$OPT_SSL/include"
AC_MSG_RESULT([$OPT_SSL])
fi