From: Adam Dickmeiss Date: Wed, 22 Dec 2010 15:09:11 +0000 (+0100) Subject: boost: Search for /lib64 X-Git-Url: http://sru.miketaylor.org.uk/?a=commitdiff_plain;h=9cce3b0ad5715e4de0af24e856d3671786334e21;p=m4-moved-to-github.git boost: Search for /lib64 --- 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