[svn] commit: r444 - /branches/jinmei-dnsrrparams/configure.ac
BIND 10 source code commits
bind10-changes at lists.isc.org
Tue Jan 12 03:52:46 UTC 2010
Author: jinmei
Date: Tue Jan 12 03:52:46 2010
New Revision: 444
Log:
added boos availability check
Modified:
branches/jinmei-dnsrrparams/configure.ac
Modified: branches/jinmei-dnsrrparams/configure.ac
==============================================================================
--- branches/jinmei-dnsrrparams/configure.ac (original)
+++ branches/jinmei-dnsrrparams/configure.ac Tue Jan 12 03:52:46 2010
@@ -36,6 +36,21 @@
AC_SUBST(CXXFLAGS)
#
+# Check availablity of boost:
+#
+AC_ARG_WITH(boost,
+[ --with-boost=PATH specify a path to the boost if it's not automatically found],
+ boost_path="$withval", boost_path="no")
+if test "$boost_path" != "no"
+then
+ BOOST_INCLUDES="-I$boost_path/include"
+else
+ BOOST_INCLUDES=
+fi
+
+AC_SUBST(BOOST_INCLUDES)
+
+#
# Check availablity of gtest, which will be used for unit tests.
#
AC_ARG_WITH(gtest,
More information about the bind10-changes
mailing list