2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 21:45:37 +00:00

added boos availability check

git-svn-id: svn://bind10.isc.org/svn/bind10/branches/jinmei-dnsrrparams@444 e5f2f494-b856-4b98-b285-d166d9295462
This commit is contained in:
JINMEI Tatuya
2010-01-12 03:52:46 +00:00
parent 86daa64a01
commit 7b6e64c336

View File

@@ -35,6 +35,21 @@ fi
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.
#