configure.ac 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  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. #
  82. # B10_CXXFLAGS is the default C++ compiler flags. This will (and should) be
  83. # used as the default value for each specifc AM_CXXFLAGS:
  84. # AM_CXXFLAGS = $(B10_CXXFLAGS)
  85. # AM_CXXFLAGS += ... # add module specific flags
  86. # We need this so that we can disable some specific compiler warnings per
  87. # module basis; since AM_CXXFLAGS are placed before CXXFLAGS, and since
  88. # gcc's -Wno-XXX option must be specified after -Wall or -Wextra, we cannot
  89. # specify the default warning flags in CXXFLAGS and let specific modules
  90. # "override" the default.
  91. #
  92. B10_CXXFLAGS=
  93. if test "X$GCC" = "Xyes"; then
  94. B10_CXXFLAGS="-g -Wall -Wextra -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare"
  95. UNUSED_PARAM_ATTRIBUTE='__attribute__((unused))'
  96. # Certain versions of gcc (g++) have a bug that incorrectly warns about
  97. # the use of anonymous name spaces even if they're closed in a single
  98. # translation unit. For these versions we have to disable -Werror.
  99. werror_ok=0
  100. CXXFLAGS_SAVED="$CXXFLAGS"
  101. CXXFLAGS="$CXXFLAGS $B10_CXXFLAGS -Werror"
  102. AC_MSG_CHECKING(for in-TU anonymous namespace breakage)
  103. AC_TRY_COMPILE([namespace { class Foo {}; }
  104. namespace isc {class Bar {Foo foo_;};} ],,
  105. [AC_MSG_RESULT(no)
  106. werror_ok=1
  107. B10_CXXFLAGS="$B10_CXXFLAGS -Werror"],
  108. [AC_MSG_RESULT(yes)])
  109. CXXFLAGS="$CXXFLAGS_SAVED"
  110. fi dnl GCC = yes
  111. AM_CONDITIONAL(GCC_WERROR_OK, test $werror_ok = 1)
  112. AC_DEFINE_UNQUOTED(UNUSED_PARAM, $UNUSED_PARAM_ATTRIBUTE, Define to compiler keyword indicating a function argument is intentionally unused)
  113. # produce PIC unless we disable shared libraries. need this for python bindings.
  114. if test $enable_shared != "no" -a "X$GCC" = "Xyes"; then
  115. B10_CXXFLAGS="$B10_CXXFLAGS -fPIC"
  116. fi
  117. AC_SUBST(B10_CXXFLAGS)
  118. # Checks for libraries.
  119. AC_SEARCH_LIBS(inet_pton, [nsl])
  120. AC_SEARCH_LIBS(recvfrom, [socket])
  121. # Checks for header files.
  122. # Checks for typedefs, structures, and compiler characteristics.
  123. AC_HEADER_STDBOOL
  124. AC_TYPE_SIZE_T
  125. AC_MSG_CHECKING(for sa_len in struct sockaddr)
  126. AC_TRY_COMPILE([
  127. #include <sys/types.h>
  128. #include <sys/socket.h>],
  129. [struct sockaddr sa; sa.sa_len = 0; return (0);],
  130. [AC_MSG_RESULT(yes)
  131. AC_DEFINE(HAVE_SIN_LEN, 1, Define to 1 if sockaddr_in has a sin_len member)],
  132. AC_MSG_RESULT(no))
  133. AC_ARG_WITH(lcov,
  134. [ --with-lcov[=PROGRAM] enable gtest and coverage target using the specified lcov], lcov="$withval", lcov="no")
  135. AC_ARG_WITH(gtest,
  136. [ --with-gtest=PATH specify a path to gtest header files (PATH/include) and library (PATH/lib)],
  137. gtest_path="$withval", gtest_path="no")
  138. USE_LCOV="no"
  139. if test "$lcov" != "no"; then
  140. # force gtest if not set
  141. if test "$gtest_path" = "no"; then
  142. # AC_MSG_ERROR("lcov needs gtest for test coverage report")
  143. AC_MSG_NOTICE([gtest support is now enabled, because used by coverage tests])
  144. gtest_path="yes"
  145. fi
  146. if test "$lcov" != "yes"; then
  147. LCOV=$lcov
  148. else
  149. AC_PATH_PROG([LCOV], [lcov])
  150. fi
  151. if test -x "${LCOV}"; then
  152. USE_LCOV="yes"
  153. else
  154. AC_MSG_ERROR([Cannot find lcov.])
  155. fi
  156. # is genhtml always in the same directory?
  157. GENHTML=`echo "$LCOV" | sed s/lcov$/genhtml/`
  158. if test ! -x $GENHTML; then
  159. AC_MSG_ERROR([genhtml not found, needed for lcov])
  160. fi
  161. # GCC specific?
  162. CXXFLAGS="$CXXFLAGS -fprofile-arcs -ftest-coverage"
  163. LIBS=" $LIBS -lgcov"
  164. AC_SUBST(CPPFLAGS)
  165. AC_SUBST(LIBS)
  166. AC_SUBST(LCOV)
  167. AC_SUBST(GENHTML)
  168. fi
  169. AC_SUBST(USE_LCOV)
  170. AC_ARG_WITH([boost-include],
  171. AC_HELP_STRING([--with-boost-include=PATH],
  172. [specify exact directory for Boost headers]),
  173. [boost_include_path="$withval"])
  174. if test "${boost_include_path}" ; then
  175. BOOST_INCLUDES="-I${boost_include_path}"
  176. CPPFLAGS="$CPPFLAGS $BOOST_INCLUDES"
  177. fi
  178. AC_SUBST(BOOST_INCLUDES)
  179. AC_ARG_WITH([boost-lib],
  180. AC_HELP_STRING([--with-boost-lib=PATH],
  181. [specify exact directory for Boost libraries]),
  182. [if test "$withval" != "yes" -a "$withval" != "no"; then
  183. BOOST_LDFLAGS="-L$withval"
  184. fi])
  185. AC_SUBST(BOOST_LDFLAGS)
  186. # Check availability of the Boost Python library
  187. AC_MSG_CHECKING([for boost::python library])
  188. AC_ARG_WITH([boost-python],
  189. AC_HELP_STRING([--with-boost-python],
  190. [specify whether to use the boost python library]),
  191. [with_boost_python="$withval"], [with_boost_python="auto"])
  192. if test "$with_boost_python" != "no"; then
  193. if test "$with_boost_python" != "auto" -a "X$PYTHON_LIB" = X; then
  194. AC_MSG_ERROR([Boost.Python requested but python library is not available])
  195. fi
  196. LDFLAGS_SAVED="$LDFLAGS"
  197. LIBS_SAVED="$LIBS"
  198. CPPFLAGS_SAVED="$CPPFLAGS"
  199. CPPFLAGS="$CPPFLAGS $PYTHON_INCLUDES"
  200. for BOOST_TRY_LIB in boost_python boost_python-mt; do
  201. LDFLAGS="$LDFLAGS_SAVED ${BOOST_LDFLAGS} ${PYTHON_LDFLAGS}"
  202. LIBS="$LIBS_SAVED -l${BOOST_TRY_LIB} ${PYTHON_LIB}"
  203. AC_TRY_LINK([#include <boost/python/module.hpp>
  204. using namespace boost::python;
  205. BOOST_PYTHON_MODULE(test) { throw "Boost::Python test."; }],
  206. [ return 0; ],
  207. [ AC_MSG_RESULT(yes)
  208. BOOST_PYTHON_LIB="-l${BOOST_TRY_LIB}"
  209. ],[])
  210. if test "X${BOOST_PYTHON_LIB}" != X; then
  211. break
  212. fi
  213. done
  214. LDFLAGS="$LDFLAGS_SAVED"
  215. CPPFLAGS="$CPPFLAGS_SAVED"
  216. LIBS="$LIBS_SAVED"
  217. fi
  218. if test "X${BOOST_PYTHON_LIB}" = X; then
  219. AC_MSG_RESULT(no)
  220. if test "$with_boost_python" = "yes"; then
  221. AC_MSG_ERROR([boost python library is requested but not found])
  222. fi
  223. else
  224. AC_DEFINE(HAVE_BOOST_PYTHON, 1, Define to 1 if boost python library is available)
  225. fi
  226. AM_CONDITIONAL(HAVE_BOOST_PYTHON, test "X${BOOST_PYTHON_LIB}" != X)
  227. AC_SUBST(BOOST_PYTHON_LIB)
  228. #
  229. # Check availability of gtest, which will be used for unit tests.
  230. #
  231. if test "$gtest_path" != "no"
  232. then
  233. if test "$gtest_path" != "yes"; then
  234. GTEST_PATHS=$gtest_path
  235. if test -x "${gtest_path}/bin/gtest-config" ; then
  236. GTEST_CONFIG="${gtest_path}/bin/gtest-config"
  237. fi
  238. else
  239. AC_PATH_PROG([GTEST_CONFIG], [gtest-config])
  240. fi
  241. if test -x "${GTEST_CONFIG}" ; then :
  242. # using cppflags instead of cxxflags
  243. GTEST_INCLUDES=`${GTEST_CONFIG} --cppflags`
  244. GTEST_LDFLAGS=`${GTEST_CONFIG} --ldflags`
  245. GTEST_LDADD=`${GTEST_CONFIG} --libs`
  246. GTEST_FOUND="true"
  247. else
  248. AC_MSG_WARN([Unable to locate Google Test gtest-config.])
  249. if test -z "${GTEST_PATHS}" ; then
  250. GTEST_PATHS="/usr /usr/local"
  251. fi
  252. GTEST_FOUND="false"
  253. fi
  254. if test "${GTEST_FOUND}" != "true"; then
  255. GTEST_FOUND="false"
  256. for dir in $GTEST_PATHS; do
  257. if test -f "$dir/include/gtest/gtest.h"; then
  258. GTEST_INCLUDES="-I$dir/include"
  259. GTEST_LDFLAGS="-L$dir/lib"
  260. GTEST_LDADD="-lgtest"
  261. GTEST_FOUND="true"
  262. break
  263. fi
  264. done
  265. fi
  266. if test "${GTEST_FOUND}" != "true"; then
  267. AC_MSG_ERROR([Cannot find gtest in: $GTEST_PATHS])
  268. fi
  269. else
  270. GTEST_INCLUDES=
  271. GTEST_LDFLAGS=
  272. GTEST_LDADD=
  273. fi
  274. AM_CONDITIONAL(HAVE_GTEST, test $gtest_path != "no")
  275. AC_SUBST(GTEST_INCLUDES)
  276. AC_SUBST(GTEST_LDFLAGS)
  277. AC_SUBST(GTEST_LDADD)
  278. PKG_CHECK_MODULES(SQLITE, sqlite3 >= 3.3.9, enable_features="$enable_features SQLite3")
  279. #
  280. # ASIO: we extensively use it as the C++ event management module.
  281. #
  282. # Use local ASIO headers from ext
  283. #
  284. CPPFLAGS="$CPPFLAGS -I\$(top_srcdir)/ext/asio"
  285. #
  286. # kqueue portability: ASIO uses kqueue by default if it's available (it's
  287. # generally available in BSD variants). Unfortunately, some public
  288. # implementation of kqueue forces a conversion from a pointer to an integer,
  289. # which is prohibited in C++ unless reinterpret_cast, C++'s most evil beast
  290. # (and ASIO doesn't use it anyway) is used. This will cause build error for
  291. # some of our C++ files including ASIO header files. The following check
  292. # detects such cases and tells ASIO not to use kqueue if so.
  293. AC_CHECK_FUNC(kqueue, ac_cv_have_kqueue=yes, ac_cv_have_kqueue=no)
  294. case $ac_cv_have_kqueue in
  295. yes)
  296. AC_MSG_CHECKING([whether kqueue EV_SET compiles in C++])
  297. AC_TRY_COMPILE([
  298. #include <sys/types.h>
  299. #include <sys/param.h>
  300. #include <sys/event.h>],
  301. [char* udata;
  302. EV_SET(NULL, 0, 0, 0, 0, 0, udata);],
  303. [AC_MSG_RESULT(yes)],
  304. [AC_MSG_RESULT([no, disable kqueue for ASIO])
  305. CPPFLAGS="$CPPFLAGS -DASIO_DISABLE_KQUEUE=1"
  306. ])
  307. esac
  308. # Check for headers from required devel kits.
  309. # boost/shared_ptr.hpp is in ext in svn but not in tarball.
  310. CPPFLAGS_SAVED=$CPPFLAGS
  311. if test "X$BOOST_INCLUDES" = "X"; then
  312. # abs_top_srcdir not defined yet
  313. # so this is only useful to check. We'll replace it after the check.
  314. CPPFLAGS="$CPPFLAGS -Iext/boost"
  315. fi
  316. AC_CHECK_HEADERS([boost/shared_ptr.hpp boost/foreach.hpp],,
  317. AC_MSG_ERROR([Missing required header files.]))
  318. CPPFLAGS=$CPPFLAGS_SAVED
  319. if test "X$BOOST_INCLUDES" = "X"; then
  320. CPPFLAGS="$CPPFLAGS -I\$(top_srcdir)/ext/boost"
  321. fi
  322. AC_ARG_ENABLE(man, [AC_HELP_STRING([--enable-man],
  323. [regenerate man pages [default=no]])] ,enable_man=yes, enable_man=no)
  324. AM_CONDITIONAL(ENABLE_MAN, test x$enable_man != xno)
  325. AC_ARG_ENABLE(install-configurations,
  326. [AC_HELP_STRING([--disable-install-configurations],
  327. [do not install configuration])], install_configurations=$enableval, install_configurations=yes)
  328. AM_CONDITIONAL(INSTALL_CONFIGURATIONS, test x$install_configurations = xyes || test x$install_configurations = xtrue)
  329. AC_CONFIG_FILES([Makefile
  330. src/Makefile
  331. src/bin/Makefile
  332. src/bin/bind10/Makefile
  333. src/bin/bind10/tests/Makefile
  334. src/bin/cmdctl/Makefile
  335. src/bin/cmdctl/tests/Makefile
  336. src/bin/bindctl/Makefile
  337. src/bin/bindctl/tests/Makefile
  338. src/bin/cfgmgr/Makefile
  339. src/bin/host/Makefile
  340. src/bin/loadzone/Makefile
  341. src/bin/msgq/Makefile
  342. src/bin/msgq/tests/Makefile
  343. src/bin/auth/Makefile
  344. src/bin/auth/tests/Makefile
  345. src/bin/xfrin/Makefile
  346. src/bin/xfrin/tests/Makefile
  347. src/bin/xfrout/Makefile
  348. src/bin/xfrout/tests/Makefile
  349. src/bin/usermgr/Makefile
  350. src/lib/Makefile
  351. src/lib/cc/Makefile
  352. src/lib/python/Makefile
  353. src/lib/python/isc/Makefile
  354. src/lib/python/isc/datasrc/Makefile
  355. src/lib/python/isc/cc/Makefile
  356. src/lib/python/isc/cc/tests/Makefile
  357. src/lib/python/isc/config/Makefile
  358. src/lib/python/isc/config/tests/Makefile
  359. src/lib/config/Makefile
  360. src/lib/config/tests/Makefile
  361. src/lib/dns/Makefile
  362. src/lib/dns/tests/Makefile
  363. src/lib/exceptions/Makefile
  364. src/lib/datasrc/Makefile
  365. src/lib/datasrc/tests/Makefile
  366. src/lib/xfr/Makefile
  367. ])
  368. AC_OUTPUT([src/bin/cfgmgr/b10-cfgmgr.py
  369. src/bin/cmdctl/cmdctl.py
  370. src/bin/cmdctl/run_b10-cmdctl.sh
  371. src/bin/cmdctl/tests/cmdctl_test
  372. src/bin/xfrin/tests/xfrin_test
  373. src/bin/xfrin/xfrin.py
  374. src/bin/xfrin/xfrin.spec.pre
  375. src/bin/xfrin/run_b10-xfrin.sh
  376. src/bin/xfrout/xfrout.py
  377. src/bin/xfrout/xfrout.spec.pre
  378. src/bin/xfrout/tests/xfrout_test
  379. src/bin/xfrout/run_b10-xfrout.sh
  380. src/bin/bind10/bind10.py
  381. src/bin/bind10/tests/bind10_test
  382. src/bin/bind10/run_bind10.sh
  383. src/bin/bindctl/run_bindctl.sh
  384. src/bin/bindctl/bindctl-source.py
  385. src/bin/bindctl/tests/bindctl_test
  386. src/bin/loadzone/run_loadzone.sh
  387. src/bin/loadzone/b10-loadzone.py
  388. src/bin/usermgr/run_b10-cmdctl-usermgr.sh
  389. src/bin/usermgr/b10-cmdctl-usermgr.py
  390. src/bin/msgq/msgq.py
  391. src/bin/msgq/tests/msgq_test
  392. src/bin/msgq/run_msgq.sh
  393. src/bin/auth/auth.spec.pre
  394. src/bin/auth/spec_config.h.pre
  395. src/lib/config/tests/data_def_unittests_config.h
  396. src/lib/python/isc/config/tests/config_test
  397. src/lib/python/isc/cc/tests/cc_test
  398. src/lib/dns/gen-rdatacode.py
  399. src/lib/dns/tests/testdata/gen-wiredata.py
  400. ], [
  401. chmod +x src/bin/cmdctl/run_b10-cmdctl.sh
  402. chmod +x src/bin/xfrin/run_b10-xfrin.sh
  403. chmod +x src/bin/xfrout/run_b10-xfrout.sh
  404. chmod +x src/bin/bind10/run_bind10.sh
  405. chmod +x src/bin/cmdctl/tests/cmdctl_test
  406. chmod +x src/bin/xfrin/tests/xfrin_test
  407. chmod +x src/bin/xfrout/tests/xfrout_test
  408. chmod +x src/bin/bindctl/tests/bindctl_test
  409. chmod +x src/bin/bindctl/run_bindctl.sh
  410. chmod +x src/bin/loadzone/run_loadzone.sh
  411. chmod +x src/bin/usermgr/run_b10-cmdctl-usermgr.sh
  412. chmod +x src/bin/msgq/run_msgq.sh
  413. chmod +x src/bin/msgq/tests/msgq_test
  414. chmod +x src/lib/dns/gen-rdatacode.py
  415. chmod +x src/lib/dns/tests/testdata/gen-wiredata.py
  416. ])
  417. AC_OUTPUT
  418. dnl Print the results
  419. dnl
  420. cat > config.report << END
  421. BIND 10 source configure results:
  422. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  423. Package:
  424. Name: $PACKAGE_NAME
  425. Version: $PACKAGE_VERSION
  426. Flags:
  427. DEFS: $DEFS
  428. CPPFLAGS: $CPPFLAGS
  429. CFLAGS: $CFLAGS
  430. CXXFLAGS: $CXXFLAGS
  431. B10_CXXFLAGS: $B10_CXXFLAGS
  432. dnl includes too
  433. Boost Python: $BOOST_PYTHON_LIB
  434. SQLite: $SQLITE_CFLAGS
  435. $SQLITE_LIBS
  436. Features:
  437. $enable_features
  438. Developer:
  439. Google Tests: $gtest_path
  440. Code Coverage: $USE_LCOV
  441. Generate Manuals: $enable_man
  442. END
  443. cat config.report
  444. cat <<EOF
  445. Now you can type "make" to build BIND 10
  446. EOF