Commit beef0bf0 authored by lenz@mysql.com's avatar lenz@mysql.com

- Added /usr/lib64 to the path to search for libssl.a (required on AMD64)

 - fixed a typo
parent 9ccc0173
...@@ -711,7 +711,7 @@ AC_DEFUN(MYSQL_FIND_OPENSSL, [ ...@@ -711,7 +711,7 @@ AC_DEFUN(MYSQL_FIND_OPENSSL, [
done done
for d in /usr/ssl/lib /usr/local/ssl/lib /usr/lib/openssl \ for d in /usr/ssl/lib /usr/local/ssl/lib /usr/lib/openssl \
/usr/lib /opt/ssl/lib /opt/openssl/lib /usr/local/lib/ ; do /usr/lib /usr/lib64 /opt/ssl/lib /opt/openssl/lib /usr/local/lib/ ; do
if test -f $d/libssl.a ; then if test -f $d/libssl.a ; then
OPENSSL_LIB=$d OPENSSL_LIB=$d
fi fi
...@@ -721,7 +721,7 @@ AC_DEFUN(MYSQL_FIND_OPENSSL, [ ...@@ -721,7 +721,7 @@ AC_DEFUN(MYSQL_FIND_OPENSSL, [
echo "Could not find an installation of OpenSSL" echo "Could not find an installation of OpenSSL"
if test -n "$OPENSSL_LIB" ; then if test -n "$OPENSSL_LIB" ; then
if test "$IS_LINUX" = "true"; then if test "$IS_LINUX" = "true"; then
echo "Looks like you've forgotted to install OpenSSL development RPM" echo "Looks like you've forgotten to install OpenSSL development RPM"
fi fi
fi fi
exit 1 exit 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment