diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-12-11 07:38:47 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-12-11 07:38:47 +0000 |
commit | dde277d86abfc1de8a19e8001ae7334d93febbb3 (patch) | |
tree | 501860488c772ab841ac72fa15f70aa24fc07126 /configure.in | |
parent | a5146c7297323f278a290db9459c7ebce12a1a2e (diff) | |
download | curl-dde277d86abfc1de8a19e8001ae7334d93febbb3.tar.gz |
Albert Chin-A-Young fixed the SSL option to use LDFLAGS properly
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
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 |