diff options
author | msvensson@neptunus.(none) <> | 2006-08-14 20:16:47 +0200 |
---|---|---|
committer | msvensson@neptunus.(none) <> | 2006-08-14 20:16:47 +0200 |
commit | 91c2e68c2b97bd42bc27f596da2011709db8c736 (patch) | |
tree | 5785ac49d4ce96759761024cc42a2eee2e5370e1 /config | |
parent | dee4105ce0b5207f93e32c3cab3cf5fde855e037 (diff) | |
download | mariadb-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.m4 | 4 |
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 ;; |