configure.ac 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. AC_PREREQ([2.59])
  4. AC_INIT(bind10-devel, 20110224, 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. # Libtool configuration
  11. #
  12. # On FreeBSD (and probably some others), clang++ does not meet an autoconf
  13. # assumption in identifying libtool configuration regarding shared library:
  14. # the configure script will execute "$CC -shared $CFLAGS -v -o" and expect
  15. # the output contains -Lxxx or -Ryyy. This is the case for g++, but not for
  16. # clang++, and, as a result, it will cause various errors in linking programs
  17. # or running them with a shared object (such as some of our python scripts).
  18. # To work around this problem we define a temporary variable
  19. # "CXX_LIBTOOL_LDFLAGS". It's expected to be defined as, e.g, "-L/usr/lib"
  20. # to temporarily fake the output so that it will be compatible with that of
  21. # g++.
  22. CFLAGS_SAVED=$CFLAGS
  23. CFLAGS="$CFLAGS $CXX_LIBTOOL_LDFLAGS"
  24. AC_PROG_LIBTOOL
  25. CFLAGS=$CFLAGS_SAVED
  26. # Use C++ language
  27. AC_LANG([C++])
  28. # Identify the compiler: this check must be after AC_PROG_CXX and AC_LANG.
  29. AM_CONDITIONAL(USE_GXX, test "X${GXX}" = "Xyes")
  30. AC_CHECK_DECL([__SUNPRO_CC], [SUNCXX="yes"], [SUNCXX="no"])
  31. AC_CHECK_DECL([__clang__], [CLANGPP="yes"], [CLANGPP="no"])
  32. AM_CONDITIONAL(USE_CLANGPP, test "X${CLANGPP}" = "Xyes")
  33. # Linker options
  34. # check -R rather than gcc specific -rpath to be as portable as possible.
  35. AC_MSG_CHECKING([whether -R flag is available in linker])
  36. LDFLAGS_SAVED="$LDFLAGS"
  37. LDFLAGS="$LDFLAGS -R/usr/lib"
  38. AC_TRY_LINK([],[],
  39. [ AC_MSG_RESULT(yes)
  40. rpath_available=yes
  41. ],[ AC_MSG_RESULT(no)
  42. rpath_available=no
  43. ])
  44. LDFLAGS=$LDFLAGS_SAVED
  45. # allow building programs with static link. we need to make it selective
  46. # because loadable modules cannot be statically linked.
  47. AC_ARG_ENABLE([static-link],
  48. AC_HELP_STRING([--enable-static-link],
  49. [build programs with static link [[default=no]]]),
  50. [enable_static_link=yes], [enable_static_link=no])
  51. AM_CONDITIONAL(USE_STATIC_LINK, test $enable_static_link = yes)
  52. # Check validity about some libtool options
  53. if test $enable_static_link = yes -a $enable_static = no; then
  54. AC_MSG_ERROR([--enable-static-link requires --enable-static])
  55. fi
  56. if test $enable_shared = no; then
  57. AC_MSG_ERROR([BIND 10 requires shared libraries to be built])
  58. fi
  59. AC_ARG_ENABLE(boost-threads,
  60. AC_HELP_STRING([--enable-boost-threads],
  61. [use boost threads. Currently this only means using its locks instead of dummy locks, in the cache and NSAS]),
  62. use_boost_threads=$enableval, use_boost_threads=no)
  63. # allow configuring without setproctitle.
  64. AC_ARG_ENABLE(setproctitle-check,
  65. AC_HELP_STRING([--disable-setproctitle-check],
  66. [do not check for python setproctitle module (used to give nice names to python processes)]),
  67. setproctitle_check=$enableval, setproctitle_check=yes)
  68. # OS dependent configuration
  69. SET_ENV_LIBRARY_PATH=no
  70. ENV_LIBRARY_PATH=LD_LIBRARY_PATH
  71. case "$host" in
  72. *-solaris*)
  73. # Solaris requires special definitions to get some standard libraries
  74. # (e.g. getopt(3)) available with common used header files.
  75. CPPFLAGS="$CPPFLAGS -D_XPG4_2 -D__EXTENSIONS__"
  76. ;;
  77. *-apple-darwin*)
  78. # libtool doesn't work perfectly with Darwin: libtool embeds the
  79. # final install path in dynamic libraries and our loadable python
  80. # modules always refer to that path even if it's loaded within the
  81. # source tree. This prevents pre-install tests from working.
  82. # To work around this problem we explicitly specify paths to dynamic
  83. # libraries when we use them in the source tree.
  84. SET_ENV_LIBRARY_PATH=yes
  85. ENV_LIBRARY_PATH=DYLD_LIBRARY_PATH
  86. ;;
  87. esac
  88. AM_CONDITIONAL(SET_ENV_LIBRARY_PATH, test $SET_ENV_LIBRARY_PATH = yes)
  89. AC_SUBST(SET_ENV_LIBRARY_PATH)
  90. AC_SUBST(ENV_LIBRARY_PATH)
  91. m4_define([_AM_PYTHON_INTERPRETER_LIST], [python python3 python3.1])
  92. AC_ARG_WITH([pythonpath],
  93. AC_HELP_STRING([--with-pythonpath=PATH],
  94. [specify an absolute path to python executable when automatic version check (incorrectly) fails]),
  95. [python_path="$withval"], [python_path="auto"])
  96. if test "$python_path" = auto; then
  97. AM_PATH_PYTHON([3.1])
  98. else
  99. # Older versions of automake can't handle python3 well. This is an
  100. # in-house workaround for them.
  101. PYTHON=$python_path
  102. AC_SUBST(PYTHON)
  103. PYTHON_PREFIX='${prefix}'
  104. AC_SUBST(PYTHON_PREFIX)
  105. PYTHON_EXEC_PREFIX='$(exec_prefix)'
  106. AC_SUBST(PYTHON_EXEC_PREFIX)
  107. PYTHON_VERSION=[`$PYTHON -c "import sys; sys.stdout.write(sys.version[:3])"`]
  108. if test `echo "$PYTHON_VERSION >= 3.1" | bc` != 1 ; then
  109. AC_MSG_ERROR(["Python version too old: $PYTHON_VERSION, need 3.1 or higher"])
  110. fi
  111. AC_SUBST(PYTHON_VERSION)
  112. PYTHON_PLATFORM=`$PYTHON -c "import sys; print(sys.platform)"`
  113. AC_SUBST(PYTHON_PLATFORM)
  114. pythondir='${prefix}/lib/python'$PYTHON_VERSION'/site-packages'
  115. AC_SUBST(pythondir)
  116. pkgpythondir='${pythondir}/'$PACKAGE
  117. AC_SUBST(pkgpythondir)
  118. pyexecdir='${exec_prefix}/lib/python'$PYTHON_VERSION'/site-packages'
  119. AC_SUBST(pyexecdir)
  120. pkgpyexecdir='${pyexecdir}/'$PACKAGE
  121. AC_SUBST(pkgpyexecdir)
  122. fi
  123. # Check for python development environments
  124. if test -x ${PYTHON}-config; then
  125. PYTHON_INCLUDES=`${PYTHON}-config --includes`
  126. for flag in `${PYTHON}-config --ldflags`; do
  127. # add any '-L..." flags to PYTHON_LDFLAGS
  128. flag=`echo $flag | sed -ne 's/^\(\-L.*\)$/\1/p'`
  129. if test "X${flag}" != X; then
  130. PYTHON_LDFLAGS="$PYTHON_LDFLAGS ${flag}"
  131. fi
  132. done
  133. # on some platforms, ${PYTHON}-config --ldflags doesn't provide a -L
  134. # option while having the library under a non trivial directory.
  135. # as a workaround we try the "lib" sub directory under the common
  136. # prefix for this python.
  137. if test -z "${PYTHON_LDFLAGS}"; then
  138. PYTHON_LDFLAGS="-L`${PYTHON}-config --prefix`/lib"
  139. fi
  140. else
  141. if test "X$PYTHON_INCLUDES" = X -o "X$PYTHON_LDFLAGS" = X; then
  142. 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.])
  143. fi
  144. fi
  145. # Some OSes including NetBSD don't install libpython.so in a well known path.
  146. # To avoid requiring dynamic library path with our python wrapper loadable
  147. # modules, we embed the path to the modules when possible. We do this even
  148. # when the path is known in the common operational environment (e.g. when
  149. # it's stored in a common "hint" file) for simplicity.
  150. if test $rpath_available = yes; then
  151. python_rpath=
  152. for flag in ${PYTHON_LDFLAGS}; do
  153. python_rpath="${python_rpath} `echo $flag | sed -ne 's/^\(\-L\)/-R/p'`"
  154. done
  155. PYTHON_LDFLAGS="${PYTHON_LDFLAGS} ${python_rpath}"
  156. fi
  157. AC_SUBST(PYTHON_INCLUDES)
  158. AC_SUBST(PYTHON_LDFLAGS)
  159. CPPFLAGS_SAVED="$CPPFLAGS"
  160. CPPFLAGS="$CPPFLAGS ${PYTHON_INCLUDES}"
  161. AC_CHECK_HEADERS([Python.h],, AC_MSG_ERROR([Missing Python.h]))
  162. CPPFLAGS="$CPPFLAGS_SAVED"
  163. # Check for python library. Needed for Python-wrapper libraries.
  164. LDFLAGS_SAVED="$LDFLAGS"
  165. LDFLAGS="$LDFLAGS $PYTHON_LDFLAGS"
  166. python_bin="python${PYTHON_VERSION}"
  167. AC_CHECK_LIB($python_bin, main, python_lib=$python_bin, python_lib=no)
  168. if test $python_lib != "no"; then
  169. PYTHON_LIB="-l$python_lib"
  170. fi
  171. AC_SUBST(PYTHON_LIB)
  172. LDFLAGS=$LDFLAGS_SAVED
  173. # Check for the setproctitle module
  174. if test "$setproctitle_check" = "yes" ; then
  175. AC_MSG_CHECKING(for setproctitle module)
  176. if "$PYTHON" -c 'import setproctitle' 2>/dev/null ; then
  177. AC_MSG_RESULT(ok)
  178. else
  179. AC_MSG_RESULT(missing)
  180. AC_MSG_WARN([Missing setproctitle python module.
  181. Use --disable-setproctitle-check to skip this check.
  182. In this case we will continue, but naming of python processes will not work.])
  183. fi
  184. fi
  185. # TODO: check for _sqlite3.py module
  186. # Compiler dependent settings: define some mandatory CXXFLAGS here.
  187. # We also use a separate variable B10_CXXFLAGS. This will (and should) be
  188. # used as the default value for each specific AM_CXXFLAGS:
  189. # AM_CXXFLAGS = $(B10_CXXFLAGS)
  190. # AM_CXXFLAGS += ... # add module specific flags
  191. # We need this so that we can disable some specific compiler warnings per
  192. # module basis; since AM_CXXFLAGS are placed before CXXFLAGS, and since
  193. # gcc's -Wno-XXX option must be specified after -Wall or -Wextra, we cannot
  194. # specify the default warning flags in CXXFLAGS and let specific modules
  195. # "override" the default.
  196. # This may be used to try linker flags.
  197. AC_DEFUN([BIND10_CXX_TRY_FLAG], [
  198. AC_MSG_CHECKING([whether $CXX supports $1])
  199. bind10_save_CXXFLAGS="$CXXFLAGS"
  200. CXXFLAGS="$CXXFLAGS $1"
  201. AC_LINK_IFELSE([int main(void){ return 0;} ],
  202. [bind10_cxx_flag=yes], [bind10_cxx_flag=no])
  203. CXXFLAGS="$bind10_save_CXXFLAGS"
  204. if test "x$bind10_cxx_flag" = "xyes"; then
  205. ifelse([$2], , :, [$2])
  206. else
  207. ifelse([$3], , :, [$3])
  208. fi
  209. AC_MSG_RESULT([$bind10_cxx_flag])
  210. ])
  211. werror_ok=0
  212. # SunStudio compiler requires special compiler options for boost
  213. # (http://blogs.sun.com/sga/entry/boost_mini_howto)
  214. if test "$SUNCXX" = "yes"; then
  215. CXXFLAGS="$CXXFLAGS -library=stlport4 -features=tmplife -features=tmplrefstatic"
  216. MULTITHREADING_FLAG="-mt"
  217. fi
  218. BIND10_CXX_TRY_FLAG(-Wno-missing-field-initializers,
  219. [WARNING_NO_MISSING_FIELD_INITIALIZERS_CFLAG="-Wno-missing-field-initializers"])
  220. AC_SUBST(WARNING_NO_MISSING_FIELD_INITIALIZERS_CFLAG)
  221. # gcc specific settings:
  222. if test "X$GXX" = "Xyes"; then
  223. B10_CXXFLAGS="-Wall -Wextra -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare"
  224. case "$host" in
  225. *-solaris*)
  226. MULTITHREADING_FLAG=-pthreads
  227. ;;
  228. *)
  229. MULTITHREADING_FLAG=-pthread
  230. ;;
  231. esac
  232. # Certain versions of gcc (g++) have a bug that incorrectly warns about
  233. # the use of anonymous name spaces even if they're closed in a single
  234. # translation unit. For these versions we have to disable -Werror.
  235. CXXFLAGS_SAVED="$CXXFLAGS"
  236. CXXFLAGS="$CXXFLAGS $B10_CXXFLAGS -Werror"
  237. AC_MSG_CHECKING(for in-TU anonymous namespace breakage)
  238. AC_TRY_COMPILE([namespace { class Foo {}; }
  239. namespace isc {class Bar {Foo foo_;};} ],,
  240. [AC_MSG_RESULT(no)
  241. werror_ok=1
  242. B10_CXXFLAGS="$B10_CXXFLAGS -Werror"],
  243. [AC_MSG_RESULT(yes)])
  244. CXXFLAGS="$CXXFLAGS_SAVED"
  245. fi dnl GXX = yes
  246. AM_CONDITIONAL(GCC_WERROR_OK, test $werror_ok = 1)
  247. # produce PIC unless we disable shared libraries. need this for python bindings.
  248. if test $enable_shared != "no" -a "X$GXX" = "Xyes"; then
  249. B10_CXXFLAGS="$B10_CXXFLAGS -fPIC"
  250. fi
  251. AC_SUBST(B10_CXXFLAGS)
  252. # Checks for libraries.
  253. AC_SEARCH_LIBS(inet_pton, [nsl])
  254. AC_SEARCH_LIBS(recvfrom, [socket])
  255. # Checks for header files.
  256. # Checks for typedefs, structures, and compiler characteristics.
  257. AC_HEADER_STDBOOL
  258. AC_TYPE_SIZE_T
  259. AC_MSG_CHECKING(for sa_len in struct sockaddr)
  260. AC_TRY_COMPILE([
  261. #include <sys/types.h>
  262. #include <sys/socket.h>],
  263. [struct sockaddr sa; sa.sa_len = 0; return (0);],
  264. [AC_MSG_RESULT(yes)
  265. AC_DEFINE(HAVE_SA_LEN, 1, [Define to 1 if sockaddr has a sa_len member, and corresponding sin_len and sun_len])],
  266. AC_MSG_RESULT(no))
  267. AC_ARG_WITH(pycoverage,
  268. [ --with-pycoverage[=PROGRAM] enable python code coverage using the specified coverage], pycoverage="$withval", pycoverage="no")
  269. if test "$pycoverage" = "no" ; then
  270. # just run the tests normally with python
  271. PYCOVERAGE_RUN="${PYTHON}"
  272. USE_PYCOVERAGE="no"
  273. elif test "$pycoverage" = "yes" ; then
  274. PYCOVERAGE="coverage"
  275. PYCOVERAGE_RUN="${PYCOVERAGE} run --branch --append"
  276. USE_PYCOVERAGE="yes"
  277. else
  278. PYCOVERAGE="$pycoverage"
  279. PYCOVERAGE_RUN="${PYCOVERAGE} run --branch --append"
  280. USE_PYCOVERAGE="yes"
  281. fi
  282. AM_CONDITIONAL(ENABLE_PYTHON_COVERAGE, test x$USE_PYCOVERAGE != xno)
  283. AC_SUBST(PYCOVERAGE)
  284. AC_SUBST(PYCOVERAGE_RUN)
  285. AC_SUBST(USE_PYCOVERAGE)
  286. AC_ARG_WITH(lcov,
  287. [ --with-lcov[=PROGRAM] enable gtest and coverage target using the specified lcov], lcov="$withval", lcov="no")
  288. AC_ARG_WITH(gtest,
  289. [ --with-gtest=PATH specify a path to gtest header files (PATH/include) and library (PATH/lib)],
  290. gtest_path="$withval", gtest_path="no")
  291. USE_LCOV="no"
  292. if test "$lcov" != "no"; then
  293. # force gtest if not set
  294. if test "$gtest_path" = "no"; then
  295. # AC_MSG_ERROR("lcov needs gtest for test coverage report")
  296. AC_MSG_NOTICE([gtest support is now enabled, because used by coverage tests])
  297. gtest_path="yes"
  298. fi
  299. if test "$lcov" != "yes"; then
  300. LCOV=$lcov
  301. else
  302. AC_PATH_PROG([LCOV], [lcov])
  303. fi
  304. if test -x "${LCOV}"; then
  305. USE_LCOV="yes"
  306. else
  307. AC_MSG_ERROR([Cannot find lcov.])
  308. fi
  309. # is genhtml always in the same directory?
  310. GENHTML=`echo "$LCOV" | sed s/lcov$/genhtml/`
  311. if test ! -x $GENHTML; then
  312. AC_MSG_ERROR([genhtml not found, needed for lcov])
  313. fi
  314. # GCC specific?
  315. CXXFLAGS="$CXXFLAGS -fprofile-arcs -ftest-coverage"
  316. LIBS=" $LIBS -lgcov"
  317. AC_SUBST(CPPFLAGS)
  318. AC_SUBST(LIBS)
  319. AC_SUBST(LCOV)
  320. AC_SUBST(GENHTML)
  321. fi
  322. AC_SUBST(USE_LCOV)
  323. #
  324. # Configure Boost header path
  325. #
  326. # If explicitly specified, use it.
  327. AC_ARG_WITH([boost-include],
  328. AC_HELP_STRING([--with-boost-include=PATH],
  329. [specify exact directory for Boost headers]),
  330. [boost_include_path="$withval"])
  331. # If not specified, try some common paths.
  332. if test -z "$with_boost_include"; then
  333. boostdirs="/usr/local /usr/pkg /opt /opt/local"
  334. for d in $boostdirs
  335. do
  336. if test -f $d/include/boost/shared_ptr.hpp; then
  337. boost_include_path=$d/include
  338. break
  339. fi
  340. done
  341. fi
  342. CPPFLAGS_SAVES="$CPPFLAGS"
  343. if test "${boost_include_path}" ; then
  344. BOOST_INCLUDES="-I${boost_include_path}"
  345. CPPFLAGS="$CPPFLAGS $BOOST_INCLUDES"
  346. fi
  347. AC_CHECK_HEADERS([boost/shared_ptr.hpp boost/foreach.hpp boost/interprocess/sync/interprocess_upgradable_mutex.hpp boost/date_time/posix_time/posix_time_types.hpp boost/bind.hpp boost/function.hpp],,
  348. AC_MSG_ERROR([Missing required header files.]))
  349. CPPFLAGS="$CPPFLAGS_SAVES"
  350. AC_SUBST(BOOST_INCLUDES)
  351. if test "${use_boost_threads}" = "yes" ; then
  352. AC_DEFINE([USE_BOOST_THREADS], [], [Use boost threads])
  353. # Using boost::mutex can result in requiring libboost_thread with older
  354. # versions of Boost. We'd like to avoid relying on a compiled Boost library
  355. # whenever possible, so we need to check for it step by step.
  356. #
  357. # NOTE: another fix of this problem is to simply require newer versions of
  358. # boost. If we choose that solution we should simplify the following tricky
  359. # checks accordingly and all Makefile.am's that refer to NEED_LIBBOOST_THREAD.
  360. AC_MSG_CHECKING(for boost::mutex)
  361. CPPFLAGS_SAVES="$CPPFLAGS"
  362. LIBS_SAVES="$LIBS"
  363. CPPFLAGS="$BOOST_INCLUDES $CPPFLAGS $MULTITHREADING_FLAG"
  364. need_libboost_thread=0
  365. need_sunpro_workaround=0
  366. AC_TRY_LINK([
  367. #include <boost/thread.hpp>
  368. ],[
  369. boost::mutex m;
  370. ],
  371. [ AC_MSG_RESULT(yes (without libboost_thread)) ],
  372. # there is one specific problem with SunStudio 5.10
  373. # where including boost/thread causes a compilation failure
  374. # There is a workaround in boost but it checks the version not being 5.10
  375. # This will probably be fixed in the future, in which case this
  376. # is only a temporary workaround
  377. [ AC_TRY_LINK([
  378. #if defined(__SUNPRO_CC) && __SUNPRO_CC == 0x5100
  379. #undef __SUNPRO_CC
  380. #define __SUNPRO_CC 0x5090
  381. #endif
  382. #include <boost/thread.hpp>
  383. ],[
  384. boost::mutex m;
  385. ],
  386. [ AC_MSG_RESULT(yes (with SUNOS workaround))
  387. need_sunpro_workaround=1 ],
  388. [ LIBS=" $LIBS -lboost_thread"
  389. AC_TRY_LINK([
  390. #include <boost/thread.hpp>
  391. ],[
  392. boost::mutex m;
  393. ],
  394. [ AC_MSG_RESULT(yes (with libboost_thread))
  395. need_libboost_thread=1 ],
  396. [ AC_MSG_RESULT(no)
  397. AC_MSG_ERROR([boost::mutex cannot be linked in this build environment.
  398. Perhaps you are using an older version of Boost that requires libboost_thread for the mutex support, which does not appear to be available.
  399. You may want to check the availability of the library or to upgrade Boost.])
  400. ])])])
  401. CPPFLAGS="$CPPFLAGS_SAVES"
  402. LIBS="$LIBS_SAVES"
  403. AM_CONDITIONAL(NEED_LIBBOOST_THREAD, test $need_libboost_thread = 1)
  404. if test $need_sunpro_workaround = 1; then
  405. AC_DEFINE([NEED_SUNPRO_WORKAROUND], [], [Need boost sunstudio workaround])
  406. fi
  407. else
  408. AM_CONDITIONAL(NEED_LIBBOOST_THREAD, test "${use_boost_threads}" = "yes")
  409. fi
  410. #
  411. # Check availability of gtest, which will be used for unit tests.
  412. #
  413. if test "$gtest_path" != "no"
  414. then
  415. if test "$gtest_path" != "yes"; then
  416. GTEST_PATHS=$gtest_path
  417. if test -x "${gtest_path}/bin/gtest-config" ; then
  418. GTEST_CONFIG="${gtest_path}/bin/gtest-config"
  419. fi
  420. else
  421. AC_PATH_PROG([GTEST_CONFIG], [gtest-config])
  422. fi
  423. if test -x "${GTEST_CONFIG}" ; then :
  424. # using cppflags instead of cxxflags
  425. GTEST_INCLUDES=`${GTEST_CONFIG} --cppflags`
  426. GTEST_LDFLAGS=`${GTEST_CONFIG} --ldflags`
  427. GTEST_LDADD=`${GTEST_CONFIG} --libs`
  428. GTEST_FOUND="true"
  429. else
  430. AC_MSG_WARN([Unable to locate Google Test gtest-config.])
  431. if test -z "${GTEST_PATHS}" ; then
  432. GTEST_PATHS="/usr /usr/local"
  433. fi
  434. GTEST_FOUND="false"
  435. fi
  436. if test "${GTEST_FOUND}" != "true"; then
  437. GTEST_FOUND="false"
  438. for dir in $GTEST_PATHS; do
  439. if test -f "$dir/include/gtest/gtest.h"; then
  440. GTEST_INCLUDES="-I$dir/include"
  441. GTEST_LDFLAGS="-L$dir/lib"
  442. GTEST_LDADD="-lgtest"
  443. GTEST_FOUND="true"
  444. break
  445. fi
  446. done
  447. fi
  448. if test "${GTEST_FOUND}" != "true"; then
  449. AC_MSG_ERROR([Cannot find gtest in: $GTEST_PATHS])
  450. fi
  451. else
  452. GTEST_INCLUDES=
  453. GTEST_LDFLAGS=
  454. GTEST_LDADD=
  455. fi
  456. AM_CONDITIONAL(HAVE_GTEST, test $gtest_path != "no")
  457. AC_SUBST(GTEST_INCLUDES)
  458. AC_SUBST(GTEST_LDFLAGS)
  459. AC_SUBST(GTEST_LDADD)
  460. dnl check for pkg-config itself so we don't try the m4 macro without pkg-config
  461. AC_CHECK_PROG(HAVE_PKG_CONFIG, pkg-config, yes, no)
  462. if test "x$HAVE_PKG_CONFIG" = "xno" ; then
  463. AC_MSG_ERROR(Please install pkg-config)
  464. fi
  465. PKG_CHECK_MODULES(SQLITE, sqlite3 >= 3.3.9, enable_features="$enable_features SQLite3")
  466. # I can't get some of the #include <asio.hpp> right without this
  467. # TODO: find the real cause of asio/boost wanting pthreads
  468. # (this currently only occurs for src/lib/cc/session_unittests)
  469. PTHREAD_LDFLAGS=
  470. AC_CHECK_LIB(pthread, pthread_create,[ PTHREAD_LDFLAGS=-lpthread ], [])
  471. AC_SUBST(PTHREAD_LDFLAGS)
  472. AC_SUBST(MULTITHREADING_FLAG)
  473. #
  474. # ASIO: we extensively use it as the C++ event management module.
  475. #
  476. # Use local ASIO headers from ext
  477. #
  478. CPPFLAGS="$CPPFLAGS -I\$(top_srcdir)/ext/asio"
  479. #
  480. # Use our 'coroutine' header from ext
  481. CPPFLAGS="$CPPFLAGS -I\$(top_srcdir)/ext/coroutine"
  482. #
  483. # Disable threads: Currently we don't use them.
  484. CPPFLAGS="$CPPFLAGS -DASIO_DISABLE_THREADS=1"
  485. #
  486. # kqueue portability: ASIO uses kqueue by default if it's available (it's
  487. # generally available in BSD variants). Unfortunately, some public
  488. # implementation of kqueue forces a conversion from a pointer to an integer,
  489. # which is prohibited in C++ unless reinterpret_cast, C++'s most evil beast
  490. # (and ASIO doesn't use it anyway) is used. This will cause build error for
  491. # some of our C++ files including ASIO header files. The following check
  492. # detects such cases and tells ASIO not to use kqueue if so.
  493. AC_CHECK_FUNC(kqueue, ac_cv_have_kqueue=yes, ac_cv_have_kqueue=no)
  494. if test "X$ac_cv_have_kqueue" = "Xyes"; then
  495. AC_MSG_CHECKING([whether kqueue EV_SET compiles in C++])
  496. AC_TRY_COMPILE([
  497. #include <sys/types.h>
  498. #include <sys/param.h>
  499. #include <sys/event.h>],
  500. [char* udata;
  501. EV_SET(NULL, 0, 0, 0, 0, 0, udata);],
  502. [AC_MSG_RESULT(yes)],
  503. [AC_MSG_RESULT([no, disable kqueue for ASIO])
  504. CPPFLAGS="$CPPFLAGS -DASIO_DISABLE_KQUEUE=1"
  505. ])
  506. fi
  507. # /dev/poll issue: ASIO uses /dev/poll by default if it's available (generally
  508. # the case with Solaris). Unfortunately its /dev/poll specific code would
  509. # trigger the gcc's "missing-field-initializers" warning, which would
  510. # subsequently make the build fail with -Werror. Further, older versions of
  511. # gcc don't provide an option to selectively suppress this warning.
  512. # So, for the moment, we simply disable the use of /dev/poll. Unless we
  513. # implement recursive DNS server with randomized ports, we don't need the
  514. # scalability that /dev/poll can provide, so this decision wouldn't affect
  515. # run time performance. Hopefully we can find a better solution or the ASIO
  516. # code will be updated by the time we really need it.
  517. AC_CHECK_HEADERS(sys/devpoll.h, ac_cv_have_devpoll=yes, ac_cv_have_devpoll=no)
  518. if test "X$ac_cv_have_devpoll" = "Xyes" -a "X$GXX" = "Xyes"; then
  519. CPPFLAGS="$CPPFLAGS -DASIO_DISABLE_DEV_POLL=1"
  520. fi
  521. AC_ARG_ENABLE(man, [AC_HELP_STRING([--enable-man],
  522. [regenerate man pages [default=no]])], enable_man=yes, enable_man=no)
  523. AM_CONDITIONAL(ENABLE_MAN, test x$enable_man != xno)
  524. AC_ARG_ENABLE(install-configurations,
  525. [AC_HELP_STRING([--disable-install-configurations],
  526. [do not install configuration])], install_configurations=$enableval, install_configurations=yes)
  527. AM_CONDITIONAL(INSTALL_CONFIGURATIONS, test x$install_configurations = xyes || test x$install_configurations = xtrue)
  528. AC_CONFIG_FILES([Makefile
  529. doc/Makefile
  530. doc/guide/Makefile
  531. src/Makefile
  532. src/bin/Makefile
  533. src/bin/bind10/Makefile
  534. src/bin/bind10/tests/Makefile
  535. src/bin/cmdctl/Makefile
  536. src/bin/cmdctl/tests/Makefile
  537. src/bin/bindctl/Makefile
  538. src/bin/bindctl/tests/Makefile
  539. src/bin/cfgmgr/Makefile
  540. src/bin/cfgmgr/tests/Makefile
  541. src/bin/host/Makefile
  542. src/bin/loadzone/Makefile
  543. src/bin/loadzone/tests/correct/Makefile
  544. src/bin/loadzone/tests/error/Makefile
  545. src/bin/msgq/Makefile
  546. src/bin/msgq/tests/Makefile
  547. src/bin/auth/Makefile
  548. src/bin/auth/tests/Makefile
  549. src/bin/auth/benchmarks/Makefile
  550. src/bin/resolver/Makefile
  551. src/bin/resolver/tests/Makefile
  552. src/bin/xfrin/Makefile
  553. src/bin/xfrin/tests/Makefile
  554. src/bin/xfrout/Makefile
  555. src/bin/xfrout/tests/Makefile
  556. src/bin/zonemgr/Makefile
  557. src/bin/zonemgr/tests/Makefile
  558. src/bin/stats/Makefile
  559. src/bin/stats/tests/Makefile
  560. src/bin/stats/tests/isc/Makefile
  561. src/bin/stats/tests/isc/cc/Makefile
  562. src/bin/stats/tests/isc/config/Makefile
  563. src/bin/stats/tests/isc/util/Makefile
  564. src/bin/stats/tests/testdata/Makefile
  565. src/bin/usermgr/Makefile
  566. src/bin/tests/Makefile
  567. src/lib/Makefile
  568. src/lib/asiolink/Makefile
  569. src/lib/asiolink/tests/Makefile
  570. src/lib/bench/Makefile
  571. src/lib/bench/example/Makefile
  572. src/lib/bench/tests/Makefile
  573. src/lib/cc/Makefile
  574. src/lib/cc/tests/Makefile
  575. src/lib/python/Makefile
  576. src/lib/python/isc/Makefile
  577. src/lib/python/isc/util/Makefile
  578. src/lib/python/isc/util/tests/Makefile
  579. src/lib/python/isc/datasrc/Makefile
  580. src/lib/python/isc/datasrc/tests/Makefile
  581. src/lib/python/isc/cc/Makefile
  582. src/lib/python/isc/cc/tests/Makefile
  583. src/lib/python/isc/config/Makefile
  584. src/lib/python/isc/config/tests/Makefile
  585. src/lib/python/isc/log/Makefile
  586. src/lib/python/isc/log/tests/Makefile
  587. src/lib/python/isc/net/Makefile
  588. src/lib/python/isc/net/tests/Makefile
  589. src/lib/python/isc/notify/Makefile
  590. src/lib/python/isc/notify/tests/Makefile
  591. src/lib/config/Makefile
  592. src/lib/config/tests/Makefile
  593. src/lib/config/tests/testdata/Makefile
  594. src/lib/dns/Makefile
  595. src/lib/dns/tests/Makefile
  596. src/lib/dns/tests/testdata/Makefile
  597. src/lib/dns/python/Makefile
  598. src/lib/dns/python/tests/Makefile
  599. src/lib/exceptions/Makefile
  600. src/lib/exceptions/tests/Makefile
  601. src/lib/datasrc/Makefile
  602. src/lib/datasrc/tests/Makefile
  603. src/lib/xfr/Makefile
  604. src/lib/log/Makefile
  605. src/lib/log/compiler/Makefile
  606. src/lib/log/tests/Makefile
  607. src/lib/resolve/Makefile
  608. src/lib/resolve/tests/Makefile
  609. src/lib/testutils/Makefile
  610. src/lib/testutils/testdata/Makefile
  611. src/lib/nsas/Makefile
  612. src/lib/nsas/tests/Makefile
  613. src/lib/cache/Makefile
  614. src/lib/cache/tests/Makefile
  615. ])
  616. AC_OUTPUT([doc/version.ent
  617. src/bin/cfgmgr/b10-cfgmgr.py
  618. src/bin/cfgmgr/tests/b10-cfgmgr_test.py
  619. src/bin/cmdctl/cmdctl.py
  620. src/bin/cmdctl/run_b10-cmdctl.sh
  621. src/bin/cmdctl/tests/cmdctl_test
  622. src/bin/cmdctl/cmdctl.spec.pre
  623. src/bin/xfrin/tests/xfrin_test
  624. src/bin/xfrin/xfrin.py
  625. src/bin/xfrin/run_b10-xfrin.sh
  626. src/bin/xfrout/xfrout.py
  627. src/bin/xfrout/xfrout.spec.pre
  628. src/bin/xfrout/tests/xfrout_test
  629. src/bin/xfrout/run_b10-xfrout.sh
  630. src/bin/resolver/resolver.spec.pre
  631. src/bin/resolver/spec_config.h.pre
  632. src/bin/zonemgr/zonemgr.py
  633. src/bin/zonemgr/zonemgr.spec.pre
  634. src/bin/zonemgr/tests/zonemgr_test
  635. src/bin/zonemgr/run_b10-zonemgr.sh
  636. src/bin/stats/stats.py
  637. src/bin/stats/stats_stub.py
  638. src/bin/stats/stats.spec.pre
  639. src/bin/stats/run_b10-stats.sh
  640. src/bin/stats/run_b10-stats_stub.sh
  641. src/bin/stats/tests/stats_test
  642. src/bin/bind10/bind10.py
  643. src/bin/bind10/tests/bind10_test
  644. src/bin/bind10/run_bind10.sh
  645. src/bin/bindctl/run_bindctl.sh
  646. src/bin/bindctl/bindctl-source.py
  647. src/bin/bindctl/tests/bindctl_test
  648. src/bin/loadzone/run_loadzone.sh
  649. src/bin/loadzone/tests/correct/correct_test.sh
  650. src/bin/loadzone/tests/error/error_test.sh
  651. src/bin/loadzone/b10-loadzone.py
  652. src/bin/usermgr/run_b10-cmdctl-usermgr.sh
  653. src/bin/usermgr/b10-cmdctl-usermgr.py
  654. src/bin/msgq/msgq.py
  655. src/bin/msgq/tests/msgq_test
  656. src/bin/msgq/run_msgq.sh
  657. src/bin/auth/auth.spec.pre
  658. src/bin/auth/spec_config.h.pre
  659. src/bin/tests/process_rename_test.py
  660. src/lib/config/tests/data_def_unittests_config.h
  661. src/lib/python/isc/config/tests/config_test
  662. src/lib/python/isc/cc/tests/cc_test
  663. src/lib/python/isc/log/tests/log_test
  664. src/lib/python/isc/notify/tests/notify_out_test
  665. src/lib/dns/gen-rdatacode.py
  666. src/lib/python/bind10_config.py
  667. src/lib/dns/tests/testdata/gen-wiredata.py
  668. src/lib/cc/session_config.h.pre
  669. src/lib/cc/tests/session_unittests_config.h
  670. src/lib/log/tests/run_time_init_test.sh
  671. ], [
  672. chmod +x src/bin/cmdctl/run_b10-cmdctl.sh
  673. chmod +x src/bin/xfrin/run_b10-xfrin.sh
  674. chmod +x src/bin/xfrout/run_b10-xfrout.sh
  675. chmod +x src/bin/zonemgr/run_b10-zonemgr.sh
  676. chmod +x src/bin/stats/tests/stats_test
  677. chmod +x src/bin/stats/run_b10-stats.sh
  678. chmod +x src/bin/stats/run_b10-stats_stub.sh
  679. chmod +x src/bin/bind10/run_bind10.sh
  680. chmod +x src/bin/cmdctl/tests/cmdctl_test
  681. chmod +x src/bin/xfrin/tests/xfrin_test
  682. chmod +x src/bin/xfrout/tests/xfrout_test
  683. chmod +x src/bin/zonemgr/tests/zonemgr_test
  684. chmod +x src/bin/bindctl/tests/bindctl_test
  685. chmod +x src/bin/bindctl/run_bindctl.sh
  686. chmod +x src/bin/loadzone/run_loadzone.sh
  687. chmod +x src/bin/loadzone/tests/correct/correct_test.sh
  688. chmod +x src/bin/loadzone/tests/error/error_test.sh
  689. chmod +x src/bin/usermgr/run_b10-cmdctl-usermgr.sh
  690. chmod +x src/bin/msgq/run_msgq.sh
  691. chmod +x src/bin/msgq/tests/msgq_test
  692. chmod +x src/lib/dns/gen-rdatacode.py
  693. chmod +x src/lib/dns/tests/testdata/gen-wiredata.py
  694. chmod +x src/lib/log/tests/run_time_init_test.sh
  695. ])
  696. AC_OUTPUT
  697. dnl Print the results
  698. dnl
  699. cat > config.report << END
  700. BIND 10 source configure results:
  701. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  702. Package:
  703. Name: $PACKAGE_NAME
  704. Version: $PACKAGE_VERSION
  705. C++ Compiler: $CXX
  706. Flags:
  707. DEFS: $DEFS
  708. CPPFLAGS: $CPPFLAGS
  709. CXXFLAGS: $CXXFLAGS
  710. B10_CXXFLAGS: $B10_CXXFLAGS
  711. dnl includes too
  712. Python: ${PYTHON_INCLUDES}
  713. ${PYTHON_LDFLAGS}
  714. ${PYTHON_LIB}
  715. Boost: ${BOOST_INCLUDES}
  716. SQLite: $SQLITE_CFLAGS
  717. $SQLITE_LIBS
  718. Features:
  719. $enable_features
  720. Developer:
  721. Google Tests: $gtest_path
  722. C++ Code Coverage: $USE_LCOV
  723. Python Code Coverage: $USE_PYCOVERAGE
  724. Generate Manuals: $enable_man
  725. END
  726. cat config.report
  727. cat <<EOF
  728. Now you can type "make" to build BIND 10
  729. EOF