[Liblas-commits] r1339 - trunk

liblas-commits at liblas.org liblas-commits at liblas.org
Fri Aug 14 20:04:47 EDT 2009


Author: mloskot
Date: Fri Aug 14 20:04:46 2009
New Revision: 1339
URL: http://liblas.org/changeset/1339

Log:
Improved reporting of Boost detection from ./configure script.

Modified:
   trunk/configure.ac

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac	(original)
+++ trunk/configure.ac	Fri Aug 14 20:04:46 2009
@@ -280,7 +280,12 @@
 AX_BOOST_BASE()
 AM_CONDITIONAL([BOOST_IS_CONFIG], [test ! x$HAVE_BOOST = xno])
 
-echo ${HAVE_BOOST}
+AC_MSG_CHECKING([if Boost C++ Libraries support requested and configured])
+if test -z ${HAVE_BOOST}; then
+    HAVE_BOOST="no"
+fi
+AC_MSG_RESULT([$HAVE_BOOST])
+
 if test "${HAVE_BOOST}" == "yes" ; then
     HAVE_BOOST="yes"
     LIBS="$BOOST_LDFLAGS -lboost_iostreams-gcc40-mt $LIBS"


More information about the Liblas-commits mailing list