diff options
author | unknown <msvensson@pilot.blaudden> | 2007-05-07 11:50:38 +0200 |
---|---|---|
committer | unknown <msvensson@pilot.blaudden> | 2007-05-07 11:50:38 +0200 |
commit | bc8b50cff7ec84d6cd7be0873ca5a77c7d106efd (patch) | |
tree | 8acb2009ea79bec1d9ce58de557f03a4f147844e /config | |
parent | af4b6b718e7a5833e182ed218c5fdc73eaf88f3e (diff) | |
download | mariadb-git-bc8b50cff7ec84d6cd7be0873ca5a77c7d106efd.tar.gz |
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
Diffstat (limited to 'config')
-rw-r--r-- | config/ac-macros/ssl.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/ac-macros/ssl.m4 b/config/ac-macros/ssl.m4 index 4ee58318a62..3ff4ef1e143 100644 --- a/config/ac-macros/ssl.m4 +++ b/config/ac-macros/ssl.m4 @@ -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 # |