mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-31 22:15:23 +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:
15
configure.ac
15
configure.ac
@@ -35,6 +35,21 @@ fi
|
|||||||
|
|
||||||
AC_SUBST(CXXFLAGS)
|
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.
|
# Check availablity of gtest, which will be used for unit tests.
|
||||||
#
|
#
|
||||||
|
Reference in New Issue
Block a user