diff options
author | unknown <lenz@mysql.com> | 2003-06-18 22:08:04 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2003-06-18 22:08:04 +0200 |
commit | 92542bb071c9411f35f6b5d3445d6801724f332e (patch) | |
tree | 3e8b3812c83ea81d4c1629f9d2af1d816411f1eb /acinclude.m4 | |
parent | a62388eaa8147f35b3d8b40834b45fb7edec86fb (diff) | |
download | mariadb-git-92542bb071c9411f35f6b5d3445d6801724f332e.tar.gz |
- Added /usr/lib64 to the path to search for libssl.a (required on AMD64)
- fixed a typo
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 4d7900acc3d..abeb2024f4a 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -711,7 +711,7 @@ AC_DEFUN(MYSQL_FIND_OPENSSL, [ done for d in /usr/ssl/lib /usr/local/ssl/lib /usr/lib/openssl \ -/usr/lib /opt/ssl/lib /opt/openssl/lib /usr/local/lib/ ; do +/usr/lib /usr/lib64 /opt/ssl/lib /opt/openssl/lib /usr/local/lib/ ; do if test -f $d/libssl.a ; then OPENSSL_LIB=$d fi @@ -721,7 +721,7 @@ AC_DEFUN(MYSQL_FIND_OPENSSL, [ echo "Could not find an installation of OpenSSL" if test -n "$OPENSSL_LIB" ; then if test "$IS_LINUX" = "true"; then - echo "Looks like you've forgotted to install OpenSSL development RPM" + echo "Looks like you've forgotten to install OpenSSL development RPM" fi fi exit 1 |