mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
Fix for Bug #1142
'./configure - error in file causes failure of compile (SSL option needed)'
This commit is contained in:
parent
0683244c1f
commit
faca78c5f0
1 changed files with 2 additions and 2 deletions
|
@ -745,7 +745,7 @@ AC_DEFUN(MYSQL_FIND_OPENSSL, [
|
|||
|
||||
for d in /usr/ssl/lib /usr/local/ssl/lib /usr/lib/openssl \
|
||||
/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 || test -f $d/libssl.dylib ; then
|
||||
OPENSSL_LIB=$d
|
||||
fi
|
||||
done
|
||||
|
@ -757,7 +757,7 @@ AC_DEFUN(MYSQL_FIND_OPENSSL, [
|
|||
if test -f $incs/openssl/ssl.h ; then
|
||||
OPENSSL_INCLUDE=-I$incs
|
||||
fi
|
||||
if test -f $libs/libssl.a ; then
|
||||
if test -f $libs/libssl.a || test -f $d/libssl.dylib ; then
|
||||
OPENSSL_LIB=$libs
|
||||
fi
|
||||
;;
|
||||
|
|
Loading…
Add table
Reference in a new issue