configure.ac 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. AC_PREREQ([2.59])
  4. AC_INIT(bind10-devel, 20100318, bind10-dev@isc.org)
  5. AC_CONFIG_SRCDIR(README)
  6. AM_INIT_AUTOMAKE
  7. AC_CONFIG_HEADERS([config.h])
  8. # Checks for programs.
  9. AC_PROG_CXX
  10. AC_PROG_CC
  11. AC_PROG_LIBTOOL
  12. # Use C++ language
  13. AC_LANG_CPLUSPLUS
  14. m4_define([_AM_PYTHON_INTERPRETER_LIST], [python python3 python3.1])
  15. AC_ARG_WITH([pythonpath],
  16. AC_HELP_STRING([--with-pythonpath=PATH],
  17. [specify an absolute path to python executable when automatic version check (incorrectly) fails]),
  18. [python_path="$withval"], [python_path="auto"])
  19. if test "$python_path" = auto; then
  20. AM_PATH_PYTHON([3.1])
  21. else
  22. # Older versions of automake can't handle python3 well. This is an
  23. # in-house workaround for them.
  24. PYTHON=$python_path
  25. AC_SUBST(PYTHON)
  26. PYTHON_PREFIX='${prefix}'
  27. AC_SUBST(PYTHON_PREFIX)
  28. PYTHON_EXEC_PREFIX='$(exec_prefix)'
  29. AC_SUBST(PYTHON_EXEC_PREFIX)
  30. PYTHON_VERSION=[`$PYTHON -c "import sys; sys.stdout.write(sys.version[:3])"`]
  31. if test `echo "$PYTHON_VERSION >= 3.1" | bc` != 1 ; then
  32. AC_MSG_ERROR(["Python version too old: $PYTHON_VERSION, need 3.1 or higher"])
  33. fi
  34. AC_SUBST(PYTHON_VERSION)
  35. PYTHON_PLATFORM=`$PYTHON -c "import sys; print(sys.platform)"`
  36. AC_SUBST(PYTHON_PLATFORM)
  37. pythondir='${prefix}/lib/python'$PYTHON_VERSION'/site-packages'
  38. AC_SUBST(pythondir)
  39. pkgpythondir='${pythondir}/'$PACKAGE
  40. AC_SUBST(pkgpythondir)
  41. pyexecdir='${exec_prefix}/lib/python'$PYTHON_VERSION'/site-packages'
  42. AC_SUBST(pyexecdir)
  43. pkgpyexecdir='${pyexecdir}/'$PACKAGE
  44. AC_SUBST(pkgpyexecdir)
  45. fi
  46. # Check for python development environments
  47. if test -x ${PYTHON}-config; then
  48. PYTHON_INCLUDES=`${PYTHON}-config --includes`
  49. for flag in `${PYTHON}-config --ldflags`; do
  50. # add any '-L..." flags to PYTHON_LDFLAGS
  51. flag=`echo $flag | sed -ne 's/^\(\-L.*\)$/\1/p'`
  52. if test "X${flag}" != X; then
  53. PYTHON_LDFLAGS="$PYTHON_LDFLAGS ${flag}"
  54. fi
  55. done
  56. # on some platforms, ${PYTHON}-config --ldflags doesn't provide a -L
  57. # option while having the library under a non trivial directory.
  58. # as a workaround we try the "lib" sub directory under the common
  59. # prefix for this python.
  60. if test -z "${PYTHON_LDFLAGS}"; then
  61. PYTHON_LDFLAGS="-L`${PYTHON}-config --prefix`/lib"
  62. fi
  63. else
  64. if test "X$PYTHON_INCLUDES" = X -o "X$PYTHON_LDFLAGS" = X; then
  65. AC_MSG_WARN([${PYTHON}-config does not exist or is not executable, so we could not detect python development environment. Your system may require an additional package (e.g. "python3-dev"). Alternatively, if you are sure you have python headers and libraries, define PYTHON_INCLUDES and PYTHON_LDFLAGS and run this script.])
  66. fi
  67. fi
  68. AC_SUBST(PYTHON_INCLUDES)
  69. AC_SUBST(PYTHON_LDFLAGS)
  70. # Check for python library (not absolutely mandatory, but needed for
  71. # Boost.Python when we use it. See below.)
  72. LDFLAGS_SAVED="$LDFLAGS"
  73. LDFLAGS="$LDFLAGS $PYTHON_LDFLAGS"
  74. python_bin="python${PYTHON_VERSION}"
  75. AC_CHECK_LIB($python_bin, main, python_lib=$python_bin, python_lib=no)
  76. if test $python_lib != "no"; then
  77. PYTHON_LIB="-l$python_lib"
  78. fi
  79. AC_SUBST(PYTHON_LIB)
  80. # TODO: check for _sqlite3.py module
  81. # default compiler warning settings
  82. if test "X$GCC" = "Xyes"; then
  83. CXXFLAGS="$CXXFLAGS -g -Wall -Wextra -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare"
  84. UNUSED_PARAM_ATTRIBUTE='__attribute__((unused))'
  85. # Certain versions of gcc (g++) have a bug that incorrectly warns about
  86. # the use of anonymous name spaces even if they're closed in a single
  87. # translation unit. For these versions we have to disable -Werror.
  88. werror_ok=0
  89. CXXFLAGS_SAVED="$CXXFLAGS"
  90. CXXFLAGS="$CXXFLAGS -Werror"
  91. AC_MSG_CHECKING(for in-TU anonymous namespace breakage)
  92. AC_TRY_COMPILE([namespace { class Foo {}; }
  93. namespace isc {class Bar {Foo foo_;};} ],,
  94. [AC_MSG_RESULT(no)
  95. werror_ok=1],
  96. [AC_MSG_RESULT(yes)])
  97. CXXFLAGS="$CXXFLAGS_SAVED"
  98. fi
  99. AC_DEFINE_UNQUOTED(UNUSED_PARAM, $UNUSED_PARAM_ATTRIBUTE, Define to compiler keyword indicating a function argument is intentionally unused)
  100. AM_CONDITIONAL(GCC_WERROR_OK, test $werror_ok = 1)
  101. # produce PIC unless we disable shared libraries. need this for python bindings.
  102. if test $enable_shared != "no" -a "X$GCC" = "Xyes"; then
  103. CXXFLAGS="$CXXFLAGS -fPIC"
  104. fi
  105. # Checks for libraries.
  106. AC_SEARCH_LIBS(inet_pton, [nsl])
  107. AC_SEARCH_LIBS(recvfrom, [socket])
  108. # Checks for header files.
  109. # Checks for typedefs, structures, and compiler characteristics.
  110. AC_HEADER_STDBOOL
  111. AC_TYPE_SIZE_T
  112. AC_MSG_CHECKING(for sa_len in struct sockaddr)
  113. AC_TRY_COMPILE([
  114. #include <sys/types.h>
  115. #include <sys/socket.h>],
  116. [struct sockaddr sa; sa.sa_len = 0; return (0);],
  117. [AC_MSG_RESULT(yes)
  118. AC_DEFINE(HAVE_SIN_LEN, 1, Define to 1 if sockaddr_in has a sin_len member)],
  119. AC_MSG_RESULT(no))
  120. AC_ARG_WITH(lcov,
  121. [ --with-lcov[=PROGRAM] enable gtest and coverage target using the specified lcov], lcov="$withval", lcov="no")
  122. AC_ARG_WITH(gtest,
  123. [ --with-gtest=PATH specify a path to gtest header files (PATH/include) and library (PATH/lib)],
  124. gtest_path="$withval", gtest_path="no")
  125. USE_LCOV="no"
  126. if test "$lcov" != "no"; then
  127. # force gtest if not set
  128. if test "$gtest_path" = "no"; then
  129. # AC_MSG_ERROR("lcov needs gtest for test coverage report")
  130. AC_MSG_NOTICE([gtest support is now enabled, because used by coverage tests])
  131. gtest_path="yes"
  132. fi
  133. if test "$lcov" != "yes"; then
  134. LCOV=$lcov
  135. else
  136. AC_PATH_PROG([LCOV], [lcov])
  137. fi
  138. if test -x "${LCOV}"; then
  139. USE_LCOV="yes"
  140. else
  141. AC_MSG_ERROR([Cannot find lcov.])
  142. fi
  143. # is genhtml always in the same directory?
  144. GENHTML=`echo "$LCOV" | sed s/lcov$/genhtml/`
  145. if test ! -x $GENHTML; then
  146. AC_MSG_ERROR([genhtml not found, needed for lcov])
  147. fi
  148. # GCC specific?
  149. CXXFLAGS="$CXXFLAGS -fprofile-arcs -ftest-coverage"
  150. LIBS=" $LIBS -lgcov"
  151. AC_SUBST(CPPFLAGS)
  152. AC_SUBST(LIBS)
  153. AC_SUBST(LCOV)
  154. AC_SUBST(GENHTML)
  155. fi
  156. AC_SUBST(USE_LCOV)
  157. AC_ARG_WITH([boost-include],
  158. AC_HELP_STRING([--with-boost-include=PATH],
  159. [specify exact directory for Boost headers]),
  160. [boost_include_path="$withval"])
  161. if test "${boost_include_path}" ; then
  162. BOOST_INCLUDES="-I${boost_include_path}"
  163. CPPFLAGS="$CPPFLAGS $BOOST_INCLUDES"
  164. fi
  165. AC_SUBST(BOOST_INCLUDES)
  166. AC_ARG_WITH([boost-lib],
  167. AC_HELP_STRING([--with-boost-lib=PATH],
  168. [specify exact directory for Boost libraries]),
  169. [if test "$withval" != "yes" -a "$withval" != "no"; then
  170. BOOST_LDFLAGS="-L$withval"
  171. fi])
  172. AC_SUBST(BOOST_LDFLAGS)
  173. # Check availability of the Boost System library
  174. AC_MSG_CHECKING([for boost::system library])
  175. AC_ARG_WITH([boost-system],
  176. AC_HELP_STRING([--with-boost-system],
  177. [specify whether to use the boost system library]),
  178. [with_boost_system="$withval"], [with_boost_system="auto"])
  179. if test "$with_boost_system" != "no"; then
  180. LDFLAGS_SAVED="$LDFLAGS"
  181. LIBS_SAVED="$LIBS"
  182. CPPFLAGS_SAVED="$CPPFLAGS"
  183. CPPFLAGS="$CPPFLAGS -Iext/boost"
  184. for BOOST_TRY_LIB in boost_system boost_system-mt; do
  185. LDFLAGS="$LDFLAGS_SAVED ${BOOST_LDFLAGS}"
  186. LIBS="$LIBS_SAVED -l${BOOST_TRY_LIB}"
  187. AC_TRY_LINK([#include <boost/system/error_code.hpp>],
  188. [ boost::system::error_code error_code;
  189. std::string message(error_code.message());
  190. return 0; ],
  191. [ AC_MSG_RESULT(yes)
  192. BOOST_SYSTEM_LIB="-l${BOOST_TRY_LIB}"
  193. ],[])
  194. if test "X${BOOST_SYSTEM_LIB}" != X; then
  195. break
  196. fi
  197. done
  198. LDFLAGS="$LDFLAGS_SAVED"
  199. CPPFLAGS="$CPPFLAGS_SAVED"
  200. LIBS="$LIBS_SAVED"
  201. fi
  202. if test "X${BOOST_SYSTEM_LIB}" = X; then
  203. AC_MSG_RESULT(no)
  204. if test "$with_boost_system" = "yes"; then
  205. AC_MSG_ERROR([boost system library is requested but not found])
  206. fi
  207. else
  208. AC_DEFINE(HAVE_BOOST_SYSTEM, 1, Define to 1 if boost system library is available)
  209. fi
  210. AM_CONDITIONAL(HAVE_BOOST_SYSTEM, test "X${BOOST_SYSTEM_LIB}" != X)
  211. AC_SUBST(BOOST_SYSTEM_LIB)
  212. # Check availability of the Boost Python library
  213. AC_MSG_CHECKING([for boost::python library])
  214. AC_ARG_WITH([boost-python],
  215. AC_HELP_STRING([--with-boost-python],
  216. [specify whether to use the boost python library]),
  217. [with_boost_python="$withval"], [with_boost_python="auto"])
  218. if test "$with_boost_python" != "no"; then
  219. if test "$with_boost_python" != "auto" -a "X$PYTHON_LIB" = X; then
  220. AC_MSG_ERROR([Boost.Python requested but python library is not available])
  221. fi
  222. LDFLAGS_SAVED="$LDFLAGS"
  223. LIBS_SAVED="$LIBS"
  224. CPPFLAGS_SAVED="$CPPFLAGS"
  225. CPPFLAGS="$CPPFLAGS $PYTHON_INCLUDES"
  226. for BOOST_TRY_LIB in boost_python boost_python-mt; do
  227. LDFLAGS="$LDFLAGS_SAVED ${BOOST_LDFLAGS} ${PYTHON_LDFLAGS}"
  228. LIBS="$LIBS_SAVED -l${BOOST_TRY_LIB} ${PYTHON_LIB}"
  229. AC_TRY_LINK([#include <boost/python/module.hpp>
  230. using namespace boost::python;
  231. BOOST_PYTHON_MODULE(test) { throw "Boost::Python test."; }],
  232. [ return 0; ],
  233. [ AC_MSG_RESULT(yes)
  234. BOOST_PYTHON_LIB="-l${BOOST_TRY_LIB}"
  235. ],[])
  236. if test "X${BOOST_PYTHON_LIB}" != X; then
  237. break
  238. fi
  239. done
  240. LDFLAGS="$LDFLAGS_SAVED"
  241. CPPFLAGS="$CPPFLAGS_SAVED"
  242. LIBS="$LIBS_SAVED"
  243. fi
  244. if test "X${BOOST_PYTHON_LIB}" = X; then
  245. AC_MSG_RESULT(no)
  246. if test "$with_boost_python" = "yes"; then
  247. AC_MSG_ERROR([boost python library is requested but not found])
  248. fi
  249. else
  250. AC_DEFINE(HAVE_BOOST_PYTHON, 1, Define to 1 if boost python library is available)
  251. fi
  252. AM_CONDITIONAL(HAVE_BOOST_PYTHON, test "X${BOOST_PYTHON_LIB}" != X)
  253. AC_SUBST(BOOST_PYTHON_LIB)
  254. #
  255. # Check availability of gtest, which will be used for unit tests.
  256. #
  257. if test "$gtest_path" != "no"
  258. then
  259. if test "$gtest_path" != "yes"; then
  260. GTEST_PATHS=$gtest_path
  261. if test -x "${gtest_path}/bin/gtest-config" ; then
  262. GTEST_CONFIG="${gtest_path}/bin/gtest-config"
  263. fi
  264. else
  265. AC_PATH_PROG([GTEST_CONFIG], [gtest-config])
  266. fi
  267. if test -x "${GTEST_CONFIG}" ; then :
  268. # using cppflags instead of cxxflags
  269. GTEST_INCLUDES=`${GTEST_CONFIG} --cppflags`
  270. GTEST_LDFLAGS=`${GTEST_CONFIG} --ldflags`
  271. GTEST_LDADD=`${GTEST_CONFIG} --libs`
  272. GTEST_FOUND="true"
  273. else
  274. AC_MSG_WARN([Unable to locate Google Test gtest-config.])
  275. if test -z "${GTEST_PATHS}" ; then
  276. GTEST_PATHS="/usr /usr/local"
  277. fi
  278. GTEST_FOUND="false"
  279. fi
  280. if test "${GTEST_FOUND}" != "true"; then
  281. GTEST_FOUND="false"
  282. for dir in $GTEST_PATHS; do
  283. if test -f "$dir/include/gtest/gtest.h"; then
  284. GTEST_INCLUDES="-I$dir/include"
  285. GTEST_LDFLAGS="-L$dir/lib"
  286. GTEST_LDADD="-lgtest"
  287. GTEST_FOUND="true"
  288. break
  289. fi
  290. done
  291. fi
  292. if test "${GTEST_FOUND}" != "true"; then
  293. AC_MSG_ERROR([Cannot find gtest in: $GTEST_PATHS])
  294. fi
  295. else
  296. GTEST_INCLUDES=
  297. GTEST_LDFLAGS=
  298. GTEST_LDADD=
  299. fi
  300. AM_CONDITIONAL(HAVE_GTEST, test $gtest_path != "no")
  301. AC_SUBST(GTEST_INCLUDES)
  302. AC_SUBST(GTEST_LDFLAGS)
  303. AC_SUBST(GTEST_LDADD)
  304. PKG_CHECK_MODULES(SQLITE, sqlite3 >= 3.3.9, enable_features="$enable_features SQLite3")
  305. # Use local ASIO headers from ext
  306. CPPFLAGS="$CPPFLAGS -I\$(top_srcdir)/ext/asio"
  307. # Check for headers from required devel kits.
  308. # boost/shared_ptr.hpp is in ext in svn but not in tarball.
  309. CPPFLAGS_SAVED=$CPPFLAGS
  310. if test "X$BOOST_INCLUDES" = "X"; then
  311. # abs_top_srcdir not defined yet
  312. # so this is only useful to check. We'll replace it after the check.
  313. CPPFLAGS="$CPPFLAGS -Iext/boost"
  314. fi
  315. AC_CHECK_HEADERS([boost/shared_ptr.hpp boost/foreach.hpp],,
  316. AC_MSG_ERROR([Missing required header files.]))
  317. CPPFLAGS=$CPPFLAGS_SAVED
  318. if test "X$BOOST_INCLUDES" = "X"; then
  319. CPPFLAGS="$CPPFLAGS -I\$(top_srcdir)/ext/boost"
  320. fi
  321. AC_ARG_ENABLE(man, [AC_HELP_STRING([--enable-man],
  322. [regenerate man pages [default=no]])] ,enable_man=yes, enable_man=no)
  323. AM_CONDITIONAL(ENABLE_MAN, test x$enable_man != xno)
  324. AC_ARG_ENABLE(install-configurations,
  325. [AC_HELP_STRING([--disable-install-configurations],
  326. [do not install configuration])], install_configurations=$enableval, install_configurations=yes)
  327. AM_CONDITIONAL(INSTALL_CONFIGURATIONS, test x$install_configurations = xyes || test x$install_configurations = xtrue)
  328. AC_CONFIG_FILES([Makefile
  329. src/Makefile
  330. src/bin/Makefile
  331. src/bin/bind10/Makefile
  332. src/bin/bind10/tests/Makefile
  333. src/bin/cmdctl/Makefile
  334. src/bin/cmdctl/tests/Makefile
  335. src/bin/bindctl/Makefile
  336. src/bin/bindctl/tests/Makefile
  337. src/bin/cfgmgr/Makefile
  338. src/bin/host/Makefile
  339. src/bin/loadzone/Makefile
  340. src/bin/msgq/Makefile
  341. src/bin/msgq/tests/Makefile
  342. src/bin/auth/Makefile
  343. src/bin/auth/tests/Makefile
  344. src/bin/xfrin/Makefile
  345. src/bin/xfrin/tests/Makefile
  346. src/bin/xfrout/Makefile
  347. src/bin/xfrout/tests/Makefile
  348. src/bin/usermgr/Makefile
  349. src/lib/Makefile
  350. src/lib/cc/Makefile
  351. src/lib/python/Makefile
  352. src/lib/python/isc/Makefile
  353. src/lib/python/isc/datasrc/Makefile
  354. src/lib/python/isc/cc/Makefile
  355. src/lib/python/isc/cc/tests/Makefile
  356. src/lib/python/isc/config/Makefile
  357. src/lib/python/isc/config/tests/Makefile
  358. src/lib/config/Makefile
  359. src/lib/config/tests/Makefile
  360. src/lib/dns/Makefile
  361. src/lib/dns/tests/Makefile
  362. src/lib/exceptions/Makefile
  363. src/lib/datasrc/Makefile
  364. src/lib/datasrc/tests/Makefile
  365. src/lib/xfr/Makefile
  366. ])
  367. AC_OUTPUT([src/bin/cfgmgr/b10-cfgmgr.py
  368. src/bin/cmdctl/cmdctl.py
  369. src/bin/cmdctl/run_b10-cmdctl.sh
  370. src/bin/cmdctl/tests/cmdctl_test
  371. src/bin/xfrin/tests/xfrin_test
  372. src/bin/xfrin/xfrin.py
  373. src/bin/xfrin/xfrin.spec.pre
  374. src/bin/xfrin/run_b10-xfrin.sh
  375. src/bin/xfrout/xfrout.py
  376. src/bin/xfrout/xfrout.spec.pre
  377. src/bin/xfrout/tests/xfrout_test
  378. src/bin/xfrout/run_b10-xfrout.sh
  379. src/bin/bind10/bind10.py
  380. src/bin/bind10/tests/bind10_test
  381. src/bin/bind10/run_bind10.sh
  382. src/bin/bindctl/run_bindctl.sh
  383. src/bin/bindctl/bindctl-source.py
  384. src/bin/bindctl/tests/bindctl_test
  385. src/bin/loadzone/run_loadzone.sh
  386. src/bin/loadzone/b10-loadzone.py
  387. src/bin/usermgr/run_b10-cmdctl-usermgr.sh
  388. src/bin/usermgr/b10-cmdctl-usermgr.py
  389. src/bin/msgq/msgq.py
  390. src/bin/msgq/tests/msgq_test
  391. src/bin/msgq/run_msgq.sh
  392. src/bin/auth/auth.spec.pre
  393. src/bin/auth/spec_config.h.pre
  394. src/lib/config/tests/data_def_unittests_config.h
  395. src/lib/python/isc/config/tests/config_test
  396. src/lib/python/isc/cc/tests/cc_test
  397. src/lib/dns/gen-rdatacode.py
  398. src/lib/dns/tests/testdata/gen-wiredata.py
  399. ], [
  400. chmod +x src/bin/cmdctl/run_b10-cmdctl.sh
  401. chmod +x src/bin/xfrin/run_b10-xfrin.sh
  402. chmod +x src/bin/xfrout/run_b10-xfrout.sh
  403. chmod +x src/bin/bind10/run_bind10.sh
  404. chmod +x src/bin/cmdctl/tests/cmdctl_test
  405. chmod +x src/bin/xfrin/tests/xfrin_test
  406. chmod +x src/bin/xfrout/tests/xfrout_test
  407. chmod +x src/bin/bindctl/tests/bindctl_test
  408. chmod +x src/bin/bindctl/run_bindctl.sh
  409. chmod +x src/bin/loadzone/run_loadzone.sh
  410. chmod +x src/bin/usermgr/run_b10-cmdctl-usermgr.sh
  411. chmod +x src/bin/msgq/run_msgq.sh
  412. chmod +x src/bin/msgq/tests/msgq_test
  413. chmod +x src/lib/dns/gen-rdatacode.py
  414. chmod +x src/lib/dns/tests/testdata/gen-wiredata.py
  415. ])
  416. AC_OUTPUT
  417. dnl Print the results
  418. dnl
  419. cat > config.report << END
  420. BIND 10 source configure results:
  421. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  422. Package:
  423. Name: $PACKAGE_NAME
  424. Version: $PACKAGE_VERSION
  425. Flags:
  426. DEFS: $DEFS
  427. CPPFLAGS: $CPPFLAGS
  428. CFLAGS: $CFLAGS
  429. CXXFLAGS: $CXXFLAGS
  430. dnl includes too
  431. Boost Python: $BOOST_PYTHON_LIB
  432. Boost System: $BOOST_SYSTEM_LIB
  433. SQLite: $SQLITE_CFLAGS
  434. $SQLITE_LIBS
  435. Features:
  436. $enable_features
  437. Developer:
  438. Google Tests: $gtest_path
  439. Code Coverage: $USE_LCOV
  440. Generate Manuals: $enable_man
  441. END
  442. cat config.report
  443. cat <<EOF
  444. Now you can type "make" to build BIND 10
  445. EOF