diff options
author | unknown <msvensson@neptunus.(none)> | 2006-08-14 20:16:47 +0200 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2006-08-14 20:16:47 +0200 |
commit | e6c8b93da47453efdd3bb95eb5b2965f2c7d8541 (patch) | |
tree | 5785ac49d4ce96759761024cc42a2eee2e5370e1 /config | |
parent | 698bd7c4faa9c42b11ac5ce55f1450c2112bafcb (diff) | |
download | mariadb-git-e6c8b93da47453efdd3bb95eb5b2965f2c7d8541.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.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 ;; |