]> granicus.if.org Git - postgresql/commitdiff
Attached is a small patch that fixes a small "bug" with specifying the
authorBruce Momjian <bruce@momjian.us>
Tue, 12 Sep 2000 04:41:17 +0000 (04:41 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 12 Sep 2000 04:41:17 +0000 (04:41 +0000)
souce directory of OpenSSL as argument to the --with-openssl - argument.

./configure --with-openssl=/tmp/openssl-0.9.5/ - the libcrypto.a is in
the
"base" directory, not lib/.

Also, there's 2-3 typo fixes to the documentation for SSL - it should be
"server.crt", not "server.cert".

Dominic J. Eidson

configure.in

index 589a0adb633f2ab40aeae896502fda16d14a3f63..ab14940c9be2ae3c62b814c0be9b9a9d37f4cc04 100644 (file)
@@ -572,6 +572,9 @@ if test "$with_openssl" = yes ; then
   if test -d "${openssl_prefix}/lib" ; then
     openssl_libdir="${openssl_prefix}/lib"
     LIBS="$LIBS -L${openssl_prefix}/lib"
+  else
+    openssl_libdir="${openssl_prefix}"
+    LIBS="$LIBS -L${openssl_prefix}"
   fi
 fi