Commit 16e722a4 authored by unknown's avatar unknown

SSL fix


acinclude.m4:
  When libssl.so was installed from RPM and libssl.a from source libssl.a detection worked properly. Fixed.
parent c0c55b43
......@@ -717,7 +717,7 @@ AC_DEFUN(MYSQL_FIND_OPENSSL, [
for d in /usr/ssl/lib /usr/local/ssl/lib /usr/lib/openssl \
/usr/lib /opt/ssl/lib /opt/openssl/lib ; do
if test -f $d/libssl.a -o -f $d/libssl.so ; then
if test -f $d/libssl.a ; then
OPENSSL_LIB=$d
fi
done
......
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