summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authormsvensson@neptunus.(none) <>2006-08-14 20:16:47 +0200
committermsvensson@neptunus.(none) <>2006-08-14 20:16:47 +0200
commit91c2e68c2b97bd42bc27f596da2011709db8c736 (patch)
tree5785ac49d4ce96759761024cc42a2eee2e5370e1 /config
parentdee4105ce0b5207f93e32c3cab3cf5fde855e037 (diff)
downloadmariadb-git-91c2e68c2b97bd42bc27f596da2011709db8c736.tar.gz
Bug#21327 OpenSSL-checking in configure
- Change $d to $libs as suggested. - Thanks to Michael Prohm for the patch!
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
;;