From 9cce3b0ad5715e4de0af24e856d3671786334e21 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 22 Dec 2010 16:09:11 +0100 Subject: [PATCH] boost: Search for /lib64 --- boost.m4 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/boost.m4 b/boost.m4 index f3eb607..1331a84 100644 --- a/boost.m4 +++ b/boost.m4 @@ -28,7 +28,11 @@ AC_DEFUN([ID_BOOST], BOOST_CPPFLAGS="" BOOST_LIB="" else - BOOST_LIB="-L${with_boost}/lib" + for b in ${with_boost}/lib ${with_boost}/lib64; do + if test -d "$b"; then + BOOST_LIB="-L$b" + fi + fi BOOST_CPPFLAGS="-I${with_boost}/include" if test ! -f "${with_boost}/include/boost/version.hpp"; then for b in ${with_boost}/include/boost-*; do -- 1.7.10.4