diff options
author | lenz@mysql.com <> | 2003-06-18 22:08:04 +0200 |
---|---|---|
committer | lenz@mysql.com <> | 2003-06-18 22:08:04 +0200 |
commit | beef0bf08e472b609f1cf653f4607e5981e9e23a (patch) | |
tree | 3e8b3812c83ea81d4c1629f9d2af1d816411f1eb /acinclude.m4 | |
parent | 9ccc017353950171412ca9917e043b35156ead31 (diff) | |
download | mariadb-git-beef0bf08e472b609f1cf653f4607e5981e9e23a.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 |