summaryrefslogtreecommitdiff
path: root/m4/ax_lib_openssl.m4
diff options
context:
space:
mode:
authormsheby <msheby@cinecert.com>2009-11-07 00:11:58 +0000
committermsheby <>2009-11-07 00:11:58 +0000
commit55a8fee0207797c26bfa5b7dee18a65b77e80bd8 (patch)
tree1c0269db366000e07cab6e2555b67a080d41d8ef /m4/ax_lib_openssl.m4
parent7c2c22a48fefbad36f5a09cac7ae877023ad603e (diff)
Look in lib64 directory before lib directory when configure tries to link against expat and openssl.
Diffstat (limited to 'm4/ax_lib_openssl.m4')
-rw-r--r--m4/ax_lib_openssl.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/ax_lib_openssl.m4 b/m4/ax_lib_openssl.m4
index 0aef951..8a70f99 100644
--- a/m4/ax_lib_openssl.m4
+++ b/m4/ax_lib_openssl.m4
@@ -113,7 +113,7 @@ AC_DEFUN([AX_LIB_OPENSSL],
if test -n "$openssl_prefix"; then
openssl_include_dir="$openssl_prefix/include"
- openssl_ldflags="-L$openssl_prefix/lib"
+ openssl_ldflags="-L$openssl_prefix/lib64 -L$openssl_prefix/lib"
run_openssl_test="yes"
elif test "$openssl_requested" = "yes"; then
if test -n "$openssl_include_dir" -a -n "$openssl_lib_flags"; then