Bug#21327 OpenSSL-checking in configure

 - Change $d to $libs as suggested.
 - Thanks to Michael Prohm for the patch!
parent dee4105c
...@@ -30,8 +30,8 @@ AC_DEFUN([MYSQL_FIND_OPENSSL], [ ...@@ -30,8 +30,8 @@ AC_DEFUN([MYSQL_FIND_OPENSSL], [
OPENSSL_INCLUDE=-I$incs OPENSSL_INCLUDE=-I$incs
fi fi
# Test for libssl using all known library file endings # Test for libssl using all known library file endings
if test -f $d/libssl.a || test -f $d/libssl.so || \ if test -f $libs/libssl.a || test -f $libs/libssl.so || \
test -f $d/libssl.sl || test -f $d/libssl.dylib ; then test -f $libs/libssl.sl || test -f $libs/libssl.dylib ; then
OPENSSL_LIB=$libs OPENSSL_LIB=$libs
fi fi
;; ;;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment