diff options
author | gluh@gluh.mysql.r18.ru <> | 2003-12-10 17:53:55 +0400 |
---|---|---|
committer | gluh@gluh.mysql.r18.ru <> | 2003-12-10 17:53:55 +0400 |
commit | 194da99215cc7d0214415cb4f484f0f4176e4d5f (patch) | |
tree | fe0e6de794fd1798df38cb6a5354aff2a8d00725 /acinclude.m4 | |
parent | 6d271a529676021f3e1a1d60c3bf88818f678568 (diff) | |
download | mariadb-git-194da99215cc7d0214415cb4f484f0f4176e4d5f.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.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 146f1d18afb..75fb8320709 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 || test -f $d/libssl.dylib ; then + if test -f $d/libssl.a || test -f $d/libssl.so || 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 || test -f $d/libssl.dylib ; then + if test -f $libs/libssl.a || test -f $libs/libssl.so || test -f $libs/libssl.dylib ; then OPENSSL_LIB=$libs fi ;; |