diff options
author | unknown <gluh@gluh.mysql.r18.ru> | 2003-12-10 18:41:12 +0400 |
---|---|---|
committer | unknown <gluh@gluh.mysql.r18.ru> | 2003-12-10 18:41:12 +0400 |
commit | 2e4343c85a1807a8f84eecf346c08f97b5a6f524 (patch) | |
tree | 7814446195e1b34537189768848ffcc9093535c4 /acinclude.m4 | |
parent | c49c88a514a5ec7da6e74775f5f6527ed0d6fc3a (diff) | |
parent | 635e99a90c9956acb27ae8c0606efda57bc377e1 (diff) | |
download | mariadb-git-2e4343c85a1807a8f84eecf346c08f97b5a6f524.tar.gz |
Merge sgluhov@bk-internal.mysql.com:/home/bk/mysql-4.0
into gluh.mysql.r18.ru:/home/gluh/mysql-4.0.ssl
acinclude.m4:
Auto merged
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 f7833bdce41..8a92048f9ab 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.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 ; then + if test -f $libs/libssl.a || test -f $libs/libssl.so || test -f $libs/libssl.dylib ; then OPENSSL_LIB=$libs fi ;; |