summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorunknown <msvensson@neptunus.(none)>2006-08-14 20:16:47 +0200
committerunknown <msvensson@neptunus.(none)>2006-08-14 20:16:47 +0200
commit0f974d240cbb7700314cef721aba7089e00cef8d (patch)
tree5785ac49d4ce96759761024cc42a2eee2e5370e1 /config
parent649c46aa96241cec11a83d71d3056cc7da8f5595 (diff)
downloadmariadb-git-0f974d240cbb7700314cef721aba7089e00cef8d.tar.gz
Bug#21327 OpenSSL-checking in configure
- Change $d to $libs as suggested. - Thanks to Michael Prohm for the patch! config/ac-macros/openssl.m4: Replace $d with $libs as suggested in bug report.
Diffstat (limited to 'config')
-rw-r--r--config/ac-macros/openssl.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/config/ac-macros/openssl.m4 b/config/ac-macros/openssl.m4
index af4305486a3..3130cdc3437 100644
--- a/config/ac-macros/openssl.m4
+++ b/config/ac-macros/openssl.m4
@@ -30,8 +30,8 @@ AC_DEFUN([MYSQL_FIND_OPENSSL], [
OPENSSL_INCLUDE=-I$incs
fi
# Test for libssl using all known library file endings
- if test -f $d/libssl.a || test -f $d/libssl.so || \
- test -f $d/libssl.sl || test -f $d/libssl.dylib ; then
+ if test -f $libs/libssl.a || test -f $libs/libssl.so || \
+ test -f $libs/libssl.sl || test -f $libs/libssl.dylib ; then
OPENSSL_LIB=$libs
fi
;;