Updated paths in ax_boost_base.m4 to auto-detect boost on OpenIndiana.

This commit is contained in:
Gunnar Beutner 2012-09-18 13:06:31 +02:00
parent b4e632141c
commit d937848211
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ if test "x$want_boost" = "xyes"; then
fi
done
elif test "$cross_compiling" != yes; then
for ac_boost_path_tmp in /usr /usr/local /opt /opt/local "`pwd`/compat" ; do
for ac_boost_path_tmp in /usr /usr/local /opt /opt/local /usr/g++ "`pwd`/compat" ; do
if test -d "$ac_boost_path_tmp/include/boost" && test -r "$ac_boost_path_tmp/include/boost"; then
for libsubdir in $libsubdirs ; do
if ls "$ac_boost_path_tmp/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi