summaryrefslogtreecommitdiff
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
parent7c2c22a48fefbad36f5a09cac7ae877023ad603e (diff)
Look in lib64 directory before lib directory when configure tries to link against expat and openssl.
-rw-r--r--m4/ax_lib_expat.m42
-rw-r--r--m4/ax_lib_openssl.m42
2 files changed, 2 insertions, 2 deletions
diff --git a/m4/ax_lib_expat.m4 b/m4/ax_lib_expat.m4
index b64c3bc..1fcb0d2 100644
--- a/m4/ax_lib_expat.m4
+++ b/m4/ax_lib_expat.m4
@@ -110,7 +110,7 @@ AC_DEFUN([AX_LIB_EXPAT],
if test -n "$expat_prefix"; then
expat_include_dir="$expat_prefix/include"
- expat_lib_flags="-L$expat_prefix/lib -lexpat"
+ expat_lib_flags="-L$expat_prefix/lib64 -L$expat_prefix/lib -lexpat"
run_expat_test="yes"
elif test "$expat_requested" = "yes"; then
if test -n "$expat_include_dir" -a -n "$expat_lib_flags"; then
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