summaryrefslogtreecommitdiffstats
path: root/acinclude.m4
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2002-07-16 20:33:05 +0200
committerJustin Erenkrantz <jerenkrantz@apache.org>2002-07-16 20:33:05 +0200
commitb37ea2f1edad9f9d5617744d7cdf4b4a784e4776 (patch)
treefce67bbb983305f952ece0a67c3171f0e9210961 /acinclude.m4
parentUpdate SuSE layout. (diff)
downloadapache2-b37ea2f1edad9f9d5617744d7cdf4b4a784e4776.tar.xz
apache2-b37ea2f1edad9f9d5617744d7cdf4b4a784e4776.zip
Look for OpenSSL libraries in /usr/lib64.
Submitted by: Peter Poeml <poeml@suse.de> Reviewed by: Justin Erenkrantz git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96084 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index bdeca63a1c..52cdb16081 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -474,7 +474,7 @@ if test "x$ap_ssltk_base" = "x"; then
AC_MSG_CHECKING(for SSL/TLS toolkit libraries)
ap_ssltk_libdir=""
for p in $ap_ssltk_base/lib /usr/local/openssl/lib \
- /usr/local/ssl/lib /usr/local/lib /usr/lib /lib; do
+ /usr/local/ssl/lib /usr/local/lib /usr/lib /lib /usr/lib64; do
if test -f "$p/libssl.a" -o -f "$p/libssl.so"; then
ap_ssltk_libdir="$p"
break