Commit bc8b50cf authored by unknown's avatar unknown

Bug #28267 Cannot build with OpenSSL

- Fix use of uninitialized variable in config/ac-macros/ssl.m4


config/ac-macros/ssl.m4:
  Use of uninitialized variable caused $openssl_includes to be set to -I
  when configuring mysql to compile with openSSL
parent af4b6b71
......@@ -104,7 +104,7 @@ AC_DEFUN([MYSQL_FIND_OPENSSL], [
# compiler warnings when using gcc 3.x
if test "$openssl_include" != "/usr/include"
then
openssl_includes="-I$ssl_include"
openssl_includes="-I$openssl_include"
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