Skip to content

Commit 7ef9db8

Browse files
committed
Attached is a small patch that fixes a small "bug" with specifying the
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
1 parent 1da2fee commit 7ef9db8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

configure.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,6 +572,9 @@ if test "$with_openssl" = yes ; then
572572
if test -d "${openssl_prefix}/lib" ; then
573573
openssl_libdir="${openssl_prefix}/lib"
574574
LIBS="$LIBS -L${openssl_prefix}/lib"
575+
else
576+
openssl_libdir="${openssl_prefix}"
577+
LIBS="$LIBS -L${openssl_prefix}"
575578
fi
576579
fi
577580

0 commit comments

Comments
 (0)