aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--configure.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 08d9d23153..163bbfd4e3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-09-07 Dan Winship <danw@ximian.com>
+
+ * configure.in: one-line OpenSSL fix from Yanko Kaneti
+ <yaneti@declera.com>
+
2001-09-05 Ettore Perazzoli <ettore@ximian.com>
* README: Updated slightly.
diff --git a/configure.in b/configure.in
index ba3fb02552..126d29d95f 100644
--- a/configure.in
+++ b/configure.in
@@ -920,7 +920,7 @@ if test "x${msg_nss}" != "xyes"; then
case $with_openssl_libs in
""|-L*) ;;
- *) $with_openssl_libs="-L$with_openssl_libs" ;;
+ *) with_openssl_libs="-L$with_openssl_libs" ;;
esac
AC_CHECK_LIB(dl, dlopen, DL_LDFLAGS="-ldl", DL_LDFLAGS="")