acinclude.m4:
  When libssl.so was installed from RPM and libssl.a from source libssl.a detection worked properly. Fixed.
This commit is contained in:
unknown 2001-10-05 13:39:47 +02:00
parent 07cb4e93aa
commit c965463333

View File

@ -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