mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
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.
This commit is contained in:
parent
698bd7c4fa
commit
e6c8b93da4
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue