summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorunknown <gluh@gluh.mysql.r18.ru>2003-09-01 15:36:53 +0500
committerunknown <gluh@gluh.mysql.r18.ru>2003-09-01 15:36:53 +0500
commitfaca78c5f0f7d957265d7a5eb0af4a39d011df63 (patch)
tree3e6534e939ca9c76bdd3b9d4df4837b32f7dc57b /acinclude.m4
parent0683244c1ff89dff8fb0577267db26c6deaa946e (diff)
downloadmariadb-git-faca78c5f0f7d957265d7a5eb0af4a39d011df63.tar.gz
Fix for Bug #1142
'./configure - error in file causes failure of compile (SSL option needed)'
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index f6bd1d9e83e..146f1d18afb 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -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
;;