configure.ac 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. AC_PREREQ([2.59])
  4. AC_INIT(bind10, 20130205, bind10-dev@isc.org)
  5. AC_CONFIG_SRCDIR(README)
  6. # serial-tests is not available in automake version before 1.13. In
  7. # automake 1.13 and higher, AM_PROG_INSTALL is undefined, so we'll check
  8. # that and conditionally use serial-tests.
  9. AM_INIT_AUTOMAKE(
  10. [foreign]
  11. m4_ifndef([AM_PROG_INSTALL], [serial-tests])
  12. )
  13. m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])dnl be backward compatible
  14. AC_CONFIG_HEADERS([config.h])
  15. AC_CONFIG_MACRO_DIR([m4macros])
  16. # Checks for programs.
  17. AC_PROG_CXX
  18. # Enable low-performing debugging facilities? This option optionally
  19. # enables some debugging aids that perform slowly and hence aren't built
  20. # by default.
  21. AC_ARG_ENABLE([debug],
  22. AS_HELP_STRING([--enable-debug],
  23. [enable debugging (default is no)]),
  24. [case "${enableval}" in
  25. yes) debug_enabled=yes ;;
  26. no) debug_enabled=no ;;
  27. *) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) ;;
  28. esac],[debug_enabled=no])
  29. AM_CONDITIONAL([DEBUG_ENABLED], [test x$debug_enabled = xyes])
  30. AM_COND_IF([DEBUG_ENABLED], [AC_DEFINE([ENABLE_DEBUG], [1], [Enable low-performing debugging facilities?])])
  31. # Libtool configuration
  32. #
  33. # libtool cannot handle spaces in paths, so exit early if there is one
  34. if [ test `echo $PWD | grep -c ' '` != "0" ]; then
  35. AC_MSG_ERROR([BIND 10 cannot be built in a directory that contains spaces, because of libtool limitations. Please change the directory name, or use a symbolic link that does not contain spaces.])
  36. fi
  37. # On FreeBSD (and probably some others), clang++ does not meet an autoconf
  38. # assumption in identifying libtool configuration regarding shared library:
  39. # the configure script will execute "$CC -shared $CFLAGS/$CXXFLAGS -v" and
  40. # expect the output contains -Lxxx or -Ryyy. This is the case for g++, but
  41. # not for clang++, and, as a result, it will cause various errors in linking
  42. # programs or running them with a shared object (such as some of our python
  43. # scripts).
  44. # To work around this problem we define a temporary variable
  45. # "CXX_LIBTOOL_LDFLAGS". It's expected to be defined as, e.g, "-L/usr/lib"
  46. # to temporarily fake the output so that it will be compatible with that of
  47. # g++.
  48. CFLAGS_SAVED=$CFLAGS
  49. CXXFLAGS_SAVED=$CXXFLAGS
  50. CFLAGS="$CFLAGS $CXX_LIBTOOL_LDFLAGS"
  51. CXXFLAGS="$CXXFLAGS $CXX_LIBTOOL_LDFLAGS"
  52. AC_PROG_LIBTOOL
  53. CFLAGS=$CFLAGS_SAVED
  54. CXXFLAGS=$CXXFLAGS_SAVED
  55. # Use C++ language
  56. AC_LANG([C++])
  57. # Identify the compiler: this check must be after AC_PROG_CXX and AC_LANG.
  58. AM_CONDITIONAL(USE_GXX, test "X${GXX}" = "Xyes")
  59. AC_CHECK_DECL([__SUNPRO_CC], [SUNCXX="yes"], [SUNCXX="no"])
  60. AC_CHECK_DECL([__clang__], [CLANGPP="yes"], [CLANGPP="no"])
  61. AM_CONDITIONAL(USE_CLANGPP, test "X${CLANGPP}" = "Xyes")
  62. # Linker options
  63. # check -R, "-Wl,-R" or -rpath (we share the AX function defined in
  64. # examples/m4)
  65. AX_ISC_RPATH
  66. # Compiler dependent settings: define some mandatory CXXFLAGS here.
  67. # We also use a separate variable B10_CXXFLAGS. This will (and should) be
  68. # used as the default value for each specific AM_CXXFLAGS:
  69. # AM_CXXFLAGS = $(B10_CXXFLAGS)
  70. # AM_CXXFLAGS += ... # add module specific flags
  71. # We need this so that we can disable some specific compiler warnings per
  72. # module basis; since AM_CXXFLAGS are placed before CXXFLAGS, and since
  73. # gcc's -Wno-XXX option must be specified after -Wall or -Wextra, we cannot
  74. # specify the default warning flags in CXXFLAGS and let specific modules
  75. # "override" the default.
  76. # This may be used to try linker flags.
  77. AC_DEFUN([BIND10_CXX_TRY_FLAG], [
  78. AC_MSG_CHECKING([whether $CXX supports $1])
  79. bind10_save_CXXFLAGS="$CXXFLAGS"
  80. CXXFLAGS="$CXXFLAGS $1"
  81. AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void){ return 0;}])],
  82. [bind10_cxx_flag=yes], [bind10_cxx_flag=no])
  83. CXXFLAGS="$bind10_save_CXXFLAGS"
  84. if test "x$bind10_cxx_flag" = "xyes"; then
  85. ifelse([$2], , :, [$2])
  86. else
  87. ifelse([$3], , :, [$3])
  88. fi
  89. AC_MSG_RESULT([$bind10_cxx_flag])
  90. ])
  91. # SunStudio compiler requires special compiler options for boost
  92. # (http://blogs.sun.com/sga/entry/boost_mini_howto)
  93. if test "$SUNCXX" = "yes"; then
  94. CXXFLAGS="$CXXFLAGS -library=stlport4 -features=tmplife -features=tmplrefstatic"
  95. MULTITHREADING_FLAG="-mt"
  96. fi
  97. # Newer versions of clang++ promotes "unused driver arguments" warnings to
  98. # a fatal error with -Werror, causing build failure. Since we use multiple
  99. # compilers on multiple systems, this can easily happen due to settings for
  100. # non clang++ environments that could be just ignored otherwise. It can also
  101. # happen if clang++ is used via ccache. So, although probably suboptimal,
  102. # we suppress this particular warning. Note that it doesn't weaken checks
  103. # on the source code.
  104. if test "$CLANGPP" = "yes"; then
  105. B10_CXXFLAGS="$B10_CXXFLAGS -Qunused-arguments"
  106. fi
  107. BIND10_CXX_TRY_FLAG([-Wno-missing-field-initializers],
  108. [WARNING_NO_MISSING_FIELD_INITIALIZERS_CFLAG="-Wno-missing-field-initializers"])
  109. AC_SUBST(WARNING_NO_MISSING_FIELD_INITIALIZERS_CFLAG)
  110. # gcc specific settings:
  111. if test "X$GXX" = "Xyes"; then
  112. B10_CXXFLAGS="$B10_CXXFLAGS -Wall -Wextra -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare"
  113. case "$host" in
  114. *-solaris*)
  115. MULTITHREADING_FLAG=-pthreads
  116. # In Solaris, IN6ADDR_ANY_INIT and IN6ADDR_LOOPBACK_INIT need -Wno-missing-braces
  117. B10_CXXFLAGS="$B10_CXXFLAGS -Wno-missing-braces"
  118. ;;
  119. *)
  120. MULTITHREADING_FLAG=-pthread
  121. ;;
  122. esac
  123. # Don't use -Werror if configured not to
  124. AC_ARG_WITH(werror,
  125. AC_HELP_STRING([--with-werror], [Compile using -Werror (default=yes)]),
  126. [
  127. case "${withval}" in
  128. yes) with_werror=1 ;;
  129. no) with_werror=0 ;;
  130. *) AC_MSG_ERROR(bad value ${withval} for --with-werror) ;;
  131. esac],
  132. [with_werror=1])
  133. werror_ok=0
  134. # Certain versions of gcc (g++) have a bug that incorrectly warns about
  135. # the use of anonymous name spaces even if they're closed in a single
  136. # translation unit. For these versions we have to disable -Werror.
  137. if test $with_werror = 1; then
  138. CXXFLAGS_SAVED="$CXXFLAGS"
  139. CXXFLAGS="$CXXFLAGS $B10_CXXFLAGS -Werror"
  140. AC_MSG_CHECKING(for in-TU anonymous namespace breakage)
  141. AC_TRY_COMPILE([namespace { class Foo {}; }
  142. namespace isc {class Bar {Foo foo_;};} ],,
  143. [AC_MSG_RESULT(no)
  144. werror_ok=1
  145. B10_CXXFLAGS="$B10_CXXFLAGS -Werror"],
  146. [AC_MSG_RESULT(yes)])
  147. CXXFLAGS="$CXXFLAGS_SAVED"
  148. fi
  149. fi dnl GXX = yes
  150. # allow building programs with static link. we need to make it selective
  151. # because loadable modules cannot be statically linked.
  152. AC_ARG_ENABLE([static-link],
  153. AC_HELP_STRING([--enable-static-link],
  154. [build programs with static link [[default=no]]]),
  155. [enable_static_link=yes], [enable_static_link=no])
  156. AM_CONDITIONAL(USE_STATIC_LINK, test $enable_static_link = yes)
  157. # Check validity about some libtool options
  158. if test $enable_static_link = yes -a $enable_static = no; then
  159. AC_MSG_ERROR([--enable-static-link requires --enable-static])
  160. fi
  161. if test $enable_shared = no; then
  162. AC_MSG_ERROR([BIND 10 requires shared libraries to be built])
  163. fi
  164. # allow configuring without setproctitle.
  165. AC_ARG_ENABLE(setproctitle-check,
  166. AC_HELP_STRING([--disable-setproctitle-check],
  167. [do not check for python setproctitle module (used to give nice names to python processes)]),
  168. setproctitle_check=$enableval, setproctitle_check=yes)
  169. # OS dependent configuration
  170. SET_ENV_LIBRARY_PATH=no
  171. ENV_LIBRARY_PATH=LD_LIBRARY_PATH
  172. case "$host" in
  173. *-solaris*)
  174. # Solaris requires special definitions to get some standard libraries
  175. # (e.g. getopt(3)) available with common used header files.
  176. CPPFLAGS="$CPPFLAGS -D_XPG4_2 -D__EXTENSIONS__"
  177. # "now" binding is necessary to prevent deadlocks in C++ static initialization code
  178. LDFLAGS="$LDFLAGS -z now"
  179. # Destroying locked mutexes, condition variables being waited
  180. # on, etc. are undefined behavior on Solaris, so we set it as
  181. # such here.
  182. AC_DEFINE([HAS_UNDEFINED_PTHREAD_BEHAVIOR], [1], [Does this platform have some undefined pthreads behavior?])
  183. ;;
  184. *-apple-darwin*)
  185. # Starting with OSX 10.7 (Lion) we must choose which IPv6 API to use
  186. # (RFC2292 or RFC3542).
  187. CPPFLAGS="$CPPFLAGS -D__APPLE_USE_RFC_3542"
  188. # libtool doesn't work perfectly with Darwin: libtool embeds the
  189. # final install path in dynamic libraries and our loadable python
  190. # modules always refer to that path even if it's loaded within the
  191. # source tree. This prevents pre-install tests from working.
  192. # To work around this problem we explicitly specify paths to dynamic
  193. # libraries when we use them in the source tree.
  194. SET_ENV_LIBRARY_PATH=yes
  195. ENV_LIBRARY_PATH=DYLD_LIBRARY_PATH
  196. ;;
  197. *-freebsd*)
  198. SET_ENV_LIBRARY_PATH=yes
  199. ;;
  200. *-netbsd*)
  201. SET_ENV_LIBRARY_PATH=yes
  202. ;;
  203. *-openbsd*)
  204. SET_ENV_LIBRARY_PATH=yes
  205. ;;
  206. esac
  207. AM_CONDITIONAL(SET_ENV_LIBRARY_PATH, test $SET_ENV_LIBRARY_PATH = yes)
  208. AC_SUBST(SET_ENV_LIBRARY_PATH)
  209. AC_SUBST(ENV_LIBRARY_PATH)
  210. m4_define([_AM_PYTHON_INTERPRETER_LIST], [python python3.3 python3.2 python3.1 python3])
  211. AC_ARG_WITH([pythonpath],
  212. AC_HELP_STRING([--with-pythonpath=PATH],
  213. [specify an absolute path to python executable when automatic version check (incorrectly) fails]),
  214. [python_path="$withval"], [python_path="auto"])
  215. if test "$python_path" = auto; then
  216. AM_PATH_PYTHON([3.1])
  217. else
  218. # Older versions of automake can't handle python3 well. This is an
  219. # in-house workaround for them.
  220. PYTHON=$python_path
  221. AC_SUBST(PYTHON)
  222. PYTHON_PREFIX='${prefix}'
  223. AC_SUBST(PYTHON_PREFIX)
  224. PYTHON_EXEC_PREFIX='$(exec_prefix)'
  225. AC_SUBST(PYTHON_EXEC_PREFIX)
  226. PYTHON_VERSION=[`$PYTHON -c "import sys; sys.stdout.write(sys.version[:3])"`]
  227. if test `echo "$PYTHON_VERSION >= 3.1" | bc` != 1 ; then
  228. AC_MSG_ERROR(["Python version too old: $PYTHON_VERSION, need 3.1 or higher"])
  229. fi
  230. AC_SUBST(PYTHON_VERSION)
  231. PYTHON_PLATFORM=`$PYTHON -c "import sys; print(sys.platform)"`
  232. AC_SUBST(PYTHON_PLATFORM)
  233. pythondir='${prefix}/lib/python'$PYTHON_VERSION'/site-packages'
  234. AC_SUBST(pythondir)
  235. pkgpythondir='${pythondir}/'$PACKAGE
  236. AC_SUBST(pkgpythondir)
  237. pyexecdir='${exec_prefix}/lib/python'$PYTHON_VERSION'/site-packages'
  238. AC_SUBST(pyexecdir)
  239. pkgpyexecdir='${pyexecdir}/'$PACKAGE
  240. AC_SUBST(pkgpyexecdir)
  241. fi
  242. # We need to store the default pyexecdir in a separate variable so that
  243. # we can specify in Makefile.am the install directory of various BIND 10
  244. # python scripts and loadable modules; in Makefile.am we cannot replace
  245. # $(pyexecdir) using itself, e.g, this doesn't work:
  246. # pyexecdir = $(pyexecdir)/isc/some_module
  247. # The separate variable makes this setup possible as follows:
  248. # pyexecdir = $(PYTHON_SITEPKG_DIR)/isc/some_module
  249. PYTHON_SITEPKG_DIR=${pyexecdir}
  250. AC_SUBST(PYTHON_SITEPKG_DIR)
  251. # This will be commonly used in various Makefile.am's that need to generate
  252. # python log messages.
  253. PYTHON_LOGMSGPKG_DIR="\$(top_builddir)/src/lib/python/isc/log_messages"
  254. AC_SUBST(PYTHON_LOGMSGPKG_DIR)
  255. # This is python package paths commonly used in python tests. See
  256. # README of log_messages for why it's included.
  257. # lib/dns/python/.libs is necessary because __init__.py of isc package
  258. # automatically imports isc.datasrc, which then requires the DNS loadable
  259. # module. #2145 should eliminate the need for it.
  260. COMMON_PYTHON_PATH="\$(abs_top_builddir)/src/lib/python/isc/log_messages:\$(abs_top_srcdir)/src/lib/python:\$(abs_top_builddir)/src/lib/python:\$(abs_top_builddir)/src/lib/dns/python/.libs"
  261. AC_SUBST(COMMON_PYTHON_PATH)
  262. # Check for python development environments
  263. if test -x ${PYTHON}-config; then
  264. PYTHON_INCLUDES=`${PYTHON}-config --includes`
  265. for flag in `${PYTHON}-config --ldflags`; do
  266. # add any '-L..." flags to PYTHON_LDFLAGS
  267. flag=`echo $flag | sed -ne 's/^\(\-L.*\)$/\1/p'`
  268. if test "X${flag}" != X; then
  269. PYTHON_LDFLAGS="$PYTHON_LDFLAGS ${flag}"
  270. fi
  271. done
  272. # on some platforms, ${PYTHON}-config --ldflags doesn't provide a -L
  273. # option while having the library under a non trivial directory.
  274. # as a workaround we try the "lib" sub directory under the common
  275. # prefix for this python.
  276. if test -z "${PYTHON_LDFLAGS}"; then
  277. PYTHON_LDFLAGS="-L`${PYTHON}-config --prefix`/lib"
  278. fi
  279. else
  280. if test "X$PYTHON_INCLUDES" = X -o "X$PYTHON_LDFLAGS" = X; then
  281. 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.])
  282. fi
  283. fi
  284. # Some OSes including NetBSD don't install libpython.so in a well known path.
  285. # To avoid requiring dynamic library path with our python wrapper loadable
  286. # modules, we embed the path to the modules when possible. We do this even
  287. # when the path is known in the common operational environment (e.g. when
  288. # it's stored in a common "hint" file) for simplicity.
  289. if test "x$ISC_RPATH_FLAG" != "x"; then
  290. python_rpath=
  291. for flag in ${PYTHON_LDFLAGS}; do
  292. python_rpath="${python_rpath} `echo $flag | sed -ne "s/^\(\-L\)/${ISC_RPATH_FLAG}/p"`"
  293. done
  294. PYTHON_LDFLAGS="${PYTHON_LDFLAGS} ${python_rpath}"
  295. fi
  296. AC_SUBST(PYTHON_INCLUDES)
  297. AC_SUBST(PYTHON_LDFLAGS)
  298. CPPFLAGS_SAVED="$CPPFLAGS"
  299. CPPFLAGS="$CPPFLAGS ${PYTHON_INCLUDES}"
  300. AC_CHECK_HEADERS([Python.h],, AC_MSG_ERROR([Missing Python.h]))
  301. CPPFLAGS="$CPPFLAGS_SAVED"
  302. # Check for python library. Needed for Python-wrapper libraries.
  303. LDFLAGS_SAVED="$LDFLAGS"
  304. LDFLAGS="$LDFLAGS $PYTHON_LDFLAGS"
  305. python_bin="python${PYTHON_VERSION}"
  306. AC_CHECK_LIB($python_bin, main, python_lib=$python_bin, python_lib=no)
  307. if test $python_lib != "no"; then
  308. PYTHON_LIB="-l$python_lib"
  309. fi
  310. AC_SUBST(PYTHON_LIB)
  311. LDFLAGS=$LDFLAGS_SAVED
  312. # Check for the setproctitle module
  313. if test "$setproctitle_check" = "yes" ; then
  314. AC_MSG_CHECKING(for setproctitle module)
  315. if "$PYTHON" -c 'import setproctitle' 2>/dev/null ; then
  316. AC_MSG_RESULT(ok)
  317. else
  318. AC_MSG_RESULT(missing)
  319. AC_MSG_WARN([Missing setproctitle python module.
  320. Use --disable-setproctitle-check to skip this check.
  321. In this case we will continue, but naming of python processes will not work.])
  322. fi
  323. fi
  324. # TODO: check for _sqlite3.py module
  325. # (g++ only check)
  326. # Python 3.2 has an unused parameter in one of its headers. This
  327. # has been reported, but not fixed as of yet, so we check if we need
  328. # to set -Wno-unused-parameter.
  329. if test "X$GXX" = "Xyes" -a $werror_ok = 1; then
  330. CPPFLAGS_SAVED="$CPPFLAGS"
  331. CPPFLAGS=${PYTHON_INCLUDES}
  332. CXXFLAGS_SAVED="$CXXFLAGS"
  333. CXXFLAGS="$CXXFLAGS $B10_CXXFLAGS -Werror"
  334. AC_MSG_CHECKING([whether we need -Wno-unused-parameter for python])
  335. AC_TRY_COMPILE(
  336. [#include <Python.h>],
  337. [],
  338. [AC_MSG_RESULT(no)],
  339. [
  340. CXXFLAGS="$CXXFLAGS -Wno-unused-parameter"
  341. AC_TRY_COMPILE([#include <Python.h>],
  342. [],
  343. [AC_MSG_RESULT(yes)
  344. PYTHON_CXXFLAGS="${PYTHON_CXXFLAGS} -Wno-unused-parameter"
  345. AC_SUBST(PYTHON_CXXFLAGS)
  346. ],
  347. [AC_MSG_ERROR([Can't compile against Python.h. If you're using MacOS X and have installed Python with Homebrew, see http://bind10.isc.org/wiki/SystemNotesMacOSX])]
  348. )
  349. ]
  350. )
  351. CXXFLAGS="$CXXFLAGS_SAVED"
  352. CPPFLAGS="$CPPFLAGS_SAVED"
  353. fi
  354. # produce PIC unless we disable shared libraries. need this for python bindings.
  355. if test $enable_shared != "no" -a "X$GXX" = "Xyes"; then
  356. B10_CXXFLAGS="$B10_CXXFLAGS -fPIC"
  357. fi
  358. AC_SUBST(B10_CXXFLAGS)
  359. # Checks for libraries.
  360. AC_SEARCH_LIBS(inet_pton, [nsl])
  361. AC_SEARCH_LIBS(recvfrom, [socket])
  362. AC_SEARCH_LIBS(nanosleep, [rt])
  363. # Checks for header files.
  364. # Checks for typedefs, structures, and compiler characteristics.
  365. AC_HEADER_STDBOOL
  366. AC_TYPE_SIZE_T
  367. # Detect OS type (it may be used to do OS-specific things, e.g.
  368. # interface detection in DHCP)
  369. AC_MSG_CHECKING(OS family)
  370. system=`uname -s`
  371. case $system in
  372. Linux)
  373. OS_TYPE="Linux"
  374. CPPFLAGS="$CPPFLAGS -DOS_LINUX"
  375. ;;
  376. Darwin | FreeBSD | NetBSD | OpenBSD)
  377. OS_TYPE="BSD"
  378. CPPFLAGS="$CPPFLAGS -DOS_BSD"
  379. ;;
  380. SunOS)
  381. OS_TYPE="Solaris"
  382. CPPFLAGS="$CPPFLAGS -DOS_SUN"
  383. ;;
  384. *)
  385. OS_TYPE="Unknown"
  386. AC_MSG_WARN("Unsupported OS: uname returned $system")
  387. ;;
  388. esac
  389. AC_MSG_RESULT($OS_TYPE)
  390. AM_CONDITIONAL(OS_LINUX, test $OS_TYPE = Linux)
  391. AM_COND_IF([OS_LINUX], [AC_DEFINE([OS_LINUX], [1], [Running on Linux?])])
  392. AM_CONDITIONAL(OS_BSD, test $OS_TYPE = BSD)
  393. AM_COND_IF([OS_BSD], [AC_DEFINE([OS_BSD], [1], [Running on BSD?])])
  394. AM_CONDITIONAL(OS_SOLARIS, test $OS_TYPE = Solaris)
  395. AM_COND_IF([OS_SOLARIS], [AC_DEFINE([OS_SOLARIS], [1], [Running on Solaris?])])
  396. AC_MSG_CHECKING(for sa_len in struct sockaddr)
  397. AC_TRY_COMPILE([
  398. #include <sys/types.h>
  399. #include <sys/socket.h>],
  400. [struct sockaddr sa; sa.sa_len = 0; return (0);],
  401. [AC_MSG_RESULT(yes)
  402. AC_DEFINE(HAVE_SA_LEN, 1, [Define to 1 if sockaddr has a sa_len member, and corresponding sin_len and sun_len])],
  403. AC_MSG_RESULT(no))
  404. AC_ARG_WITH(pycoverage,
  405. [ --with-pycoverage[=PROGRAM] enable python code coverage using the specified coverage], pycoverage="$withval", pycoverage="no")
  406. if test "$pycoverage" = "no" ; then
  407. # just run the tests normally with python
  408. PYCOVERAGE_RUN="${PYTHON}"
  409. USE_PYCOVERAGE="no"
  410. elif test "$pycoverage" = "yes" ; then
  411. PYCOVERAGE="coverage"
  412. PYCOVERAGE_RUN="${PYCOVERAGE} run --branch --append"
  413. USE_PYCOVERAGE="yes"
  414. else
  415. PYCOVERAGE="$pycoverage"
  416. PYCOVERAGE_RUN="${PYCOVERAGE} run --branch --append"
  417. USE_PYCOVERAGE="yes"
  418. fi
  419. AM_CONDITIONAL(ENABLE_PYTHON_COVERAGE, test x$USE_PYCOVERAGE != xno)
  420. AC_SUBST(PYCOVERAGE)
  421. AC_SUBST(PYCOVERAGE_RUN)
  422. AC_SUBST(USE_PYCOVERAGE)
  423. enable_gtest="no"
  424. GTEST_INCLUDES=
  425. AC_ARG_WITH([gtest-source],
  426. [AS_HELP_STRING([--with-gtest-source=PATH],
  427. [location of the Googletest source, defaults to /usr/src/gtest])],
  428. [enable_gtest="yes" ; GTEST_SOURCE="$withval"],
  429. [GTEST_SOURCE="/usr/src/gtest"])
  430. AC_ARG_WITH([gtest],
  431. [AS_HELP_STRING([--with-gtest=PATH],
  432. [specify a path to gtest header files (PATH/include) and library (PATH/lib)])],
  433. [gtest_path="$withval"; enable_gtest="yes"], [gtest_path="no"])
  434. AC_ARG_WITH(lcov,
  435. [ --with-lcov[=PROGRAM] enable gtest and coverage target using the specified lcov], lcov="$withval", lcov="no")
  436. USE_LCOV="no"
  437. if test "$lcov" != "no"; then
  438. # force gtest if not set
  439. if test "$enable_gtest" = "no"; then
  440. # AC_MSG_ERROR("lcov needs gtest for test coverage report")
  441. AC_MSG_NOTICE([gtest support is now enabled, because used by coverage tests])
  442. enable_gtest="yes"
  443. fi
  444. if test "$lcov" != "yes"; then
  445. LCOV=$lcov
  446. else
  447. AC_PATH_PROG([LCOV], [lcov])
  448. fi
  449. if test -x "${LCOV}"; then
  450. USE_LCOV="yes"
  451. else
  452. AC_MSG_ERROR([Cannot find lcov.])
  453. fi
  454. # is genhtml always in the same directory?
  455. GENHTML=`echo "$LCOV" | sed s/lcov$/genhtml/`
  456. if test ! -x $GENHTML; then
  457. AC_MSG_ERROR([genhtml not found, needed for lcov])
  458. fi
  459. # GCC specific?
  460. CXXFLAGS="$CXXFLAGS -fprofile-arcs -ftest-coverage"
  461. LIBS=" $LIBS -lgcov"
  462. AC_SUBST(CPPFLAGS)
  463. AC_SUBST(LIBS)
  464. AC_SUBST(LCOV)
  465. AC_SUBST(GENHTML)
  466. fi
  467. AC_SUBST(USE_LCOV)
  468. # Simplified, non-caching AC_CHECK_PROG
  469. # Searches $PATH for the existence of argument 2,
  470. # and sets the full path to the variable in argument 1.
  471. # if not found, and a third argument is given, the value
  472. # is set to that. If not, the value is untouched.
  473. # Does not take absolute paths into account at this point,
  474. # and also works for single files only (arguments are not
  475. # stripped like in AC_CHECK_PROG)
  476. AC_DEFUN([ACX_CHECK_PROG_NONCACHE], [
  477. RESULT=""
  478. IFS_SAVED="$IFS"
  479. IFS=${PATH_SEPARATOR}
  480. for cur_path in ${PATH} ; do
  481. if test -e "${cur_path}/$2" ; then
  482. RESULT="${cur_path}/$2"
  483. fi
  484. done
  485. if test "$RESULT" = "" ; then
  486. :
  487. m4_ifvaln([$3], [$1=$3])
  488. else
  489. $1=$RESULT
  490. fi
  491. IFS="$IFS_SAVED"
  492. ])
  493. # Botan helper test function
  494. # Tries to compile a botan program, given the output of the given
  495. # config tool
  496. # Arguments:
  497. # - name of tool (checked for path), must support --libs and --cflags
  498. # - fixed argument(s) for tool
  499. # - action if successful
  500. AC_DEFUN([ACX_TRY_BOTAN_TOOL], [
  501. TOOL=$1
  502. TOOL_ARG=$2
  503. BOTAN_TOOL=""
  504. ACX_CHECK_PROG_NONCACHE([BOTAN_TOOL], [${TOOL}])
  505. AC_MSG_CHECKING([usability of ${TOOL} ${TOOL_ARG}])
  506. if test "$BOTAN_TOOL" != "" ; then
  507. if test -x ${BOTAN_TOOL}; then
  508. BOTAN_LIBS=`$BOTAN_TOOL $TOOL_ARG --libs`
  509. LIBS_SAVED=${LIBS}
  510. LIBS="$LIBS $BOTAN_LIBS"
  511. BOTAN_INCLUDES=`$BOTAN_TOOL $TOOL_ARG --cflags`
  512. CPPFLAGS_SAVED=${CPPFLAGS}
  513. CPPFLAGS="$BOTAN_INCLUDES $CPPFLAGS"
  514. #AC_MSG_RESULT([found])
  515. AC_LINK_IFELSE(
  516. [AC_LANG_PROGRAM([#include <botan/botan.h>
  517. #include <botan/hash.h>
  518. ],
  519. [using namespace Botan;
  520. LibraryInitializer::initialize();
  521. HashFunction *h = get_hash("MD5");
  522. ])],
  523. [ AC_MSG_RESULT([ok])
  524. $3
  525. ],
  526. [ AC_MSG_RESULT([not usable]) ]
  527. )
  528. LIBS=${LIBS_SAVED}
  529. CPPFLAGS=${CPPFLAGS_SAVED}
  530. else
  531. AC_MSG_RESULT([not executable])
  532. fi
  533. else
  534. AC_MSG_RESULT([not found])
  535. fi
  536. BOTAN_TOOL=""
  537. AC_SUBST(BOTAN_TOOL)
  538. ]
  539. )
  540. # Check for Botan
  541. #
  542. # Unless --with-botan-config is given, we first try to find these config
  543. # scripts ourselves. Unfortunately, on some systems, these scripts do not
  544. # provide the correct implementation, so for each script found, we try
  545. # a compilation test (ACX_TRY_BOTAN_TOOL). If none are found, or none of
  546. # them work, we see if pkg-config is available. If so, we try the several
  547. # potential pkg-config .pc files. Again, on some systems, these can return
  548. # incorrect information as well, so the try-compile test is repeated for
  549. # each.
  550. #
  551. # If a working config script or pkgconfig file is found, we then munge its
  552. # output for use in our Makefiles, and to make sure it works, another header
  553. # and compilation test is done (this should also check whether we can compile
  554. # against botan should neither -config scripts nor pkgconfig data exist).
  555. #
  556. botan_config="yes"
  557. AC_ARG_WITH([botan-config],
  558. AC_HELP_STRING([--with-botan-config=PATH],
  559. [specify the path to the botan-config script]),
  560. [botan_config="$withval"])
  561. if test "${botan_config}" = "no" ; then
  562. AC_MSG_ERROR([Need botan for libcryptolink])
  563. fi
  564. if test "${botan_config}" != "yes" ; then
  565. if test -x "${botan_config}" ; then
  566. if test -d "${botan_config}" ; then
  567. AC_MSG_ERROR([${botan_config} is a directory])
  568. else
  569. BOTAN_CONFIG="${botan_config}"
  570. fi
  571. else
  572. AC_MSG_ERROR([--with-botan-config should point to a botan-config program and not a directory (${botan_config})])
  573. fi
  574. else
  575. BOTAN_CONFIG=""
  576. # first try several possible names of the config script
  577. # (botan-config-1.8 is there just in case, the official name change
  578. # came later)
  579. BOTAN_CONFIG_VERSIONS="botan-config-1.10 botan-config-1.9 botan-config-1.8 botan-config"
  580. for botan_config in $BOTAN_CONFIG_VERSIONS; do
  581. ACX_TRY_BOTAN_TOOL([$botan_config],,
  582. [ BOTAN_CONFIG="$botan_config" ]
  583. )
  584. if test "$BOTAN_CONFIG" != "" ; then
  585. break
  586. fi
  587. done
  588. if test "$BOTAN_CONFIG" = "" ; then
  589. AC_PATH_PROG([PKG_CONFIG], [pkg-config])
  590. if test "$PKG_CONFIG" != "" ; then
  591. # Ok so no script found, see if pkg-config knows of it.
  592. # Unfortunately, the botan.pc files also have their minor version
  593. # in their name, so we need to try them one by one
  594. BOTAN_VERSIONS="botan-1.10 botan-1.9 botan-1.8"
  595. for version in $BOTAN_VERSIONS; do
  596. ACX_TRY_BOTAN_TOOL([pkg-config], ["$version --silence-errors"],
  597. [ BOTAN_CONFIG="$PKG_CONFIG $version" ]
  598. )
  599. if test "$BOTAN_CONFIG" != "" ; then
  600. break
  601. fi
  602. done
  603. fi
  604. fi
  605. fi
  606. if test "x${BOTAN_CONFIG}" != "x"
  607. then
  608. BOTAN_LIBS=`${BOTAN_CONFIG} --libs`
  609. BOTAN_INCLUDES=`${BOTAN_CONFIG} --cflags`
  610. # We expect botan-config --libs to contain -L<path_to_libbotan>, but
  611. # this is not always the case. As a heuristics workaround we add
  612. # -L`botan-config --prefix/lib` in this case (if not present already).
  613. # Same for BOTAN_INCLUDES (but using include instead of lib) below.
  614. if [ ${BOTAN_CONFIG} --prefix >/dev/null 2>&1 ] ; then
  615. echo ${BOTAN_LIBS} | grep -- -L > /dev/null || \
  616. BOTAN_LIBS="-L`${BOTAN_CONFIG} --prefix`/lib ${BOTAN_LIBS}"
  617. echo ${BOTAN_INCLUDES} | grep -- -I > /dev/null || \
  618. BOTAN_INCLUDES="-I`${BOTAN_CONFIG} --prefix`/include ${BOTAN_INCLUDES}"
  619. fi
  620. fi
  621. # botan-config script (and the way we call pkg-config) returns -L and -l
  622. # as one string, but we need them in separate values
  623. BOTAN_LDFLAGS=
  624. BOTAN_NEWLIBS=
  625. for flag in ${BOTAN_LIBS}; do
  626. BOTAN_LDFLAGS="${BOTAN_LDFLAGS} `echo $flag | sed -ne '/^\(\-L\)/p'`"
  627. BOTAN_LIBS="${BOTAN_LIBS} `echo $flag | sed -ne '/^\(\-l\)/p'`"
  628. done
  629. # See python_rpath for some info on why we do this
  630. if test "x$ISC_RPATH_FLAG" != "x"; then
  631. BOTAN_RPATH=
  632. for flag in ${BOTAN_LIBS}; do
  633. BOTAN_RPATH="${BOTAN_RPATH} `echo $flag | sed -ne "s/^\(\-L\)/${ISC_RPATH_FLAG}/p"`"
  634. done
  635. AC_SUBST(BOTAN_RPATH)
  636. # According to the libtool manual, it should be sufficient if we
  637. # specify the "-R libdir" in our wrapper library of botan (no other
  638. # programs will need libbotan directly); "libdir" should be added to
  639. # the program's binary image. But we've seen in our build environments
  640. # that (some versions of?) libtool doesn't propagate -R as documented,
  641. # and it caused a linker error at run time. To work around this, we
  642. # also add the rpath to the global LDFLAGS.
  643. LDFLAGS="$BOTAN_RPATH $LDFLAGS"
  644. fi
  645. AC_SUBST(BOTAN_LDFLAGS)
  646. AC_SUBST(BOTAN_LIBS)
  647. AC_SUBST(BOTAN_INCLUDES)
  648. # Even though chances are high we already performed a real compilation check
  649. # in the search for the right (pkg)config data, we try again here, to
  650. # be sure.
  651. CPPFLAGS_SAVED=$CPPFLAGS
  652. CPPFLAGS="$BOTAN_INCLUDES $CPPFLAGS"
  653. LIBS_SAVED="$LIBS"
  654. LIBS="$LIBS $BOTAN_LIBS"
  655. AC_CHECK_HEADERS([botan/botan.h],,AC_MSG_ERROR([Missing required header files.]))
  656. AC_LINK_IFELSE(
  657. [AC_LANG_PROGRAM([#include <botan/botan.h>
  658. #include <botan/hash.h>
  659. ],
  660. [using namespace Botan;
  661. LibraryInitializer::initialize();
  662. HashFunction *h = get_hash("MD5");
  663. ])],
  664. [AC_MSG_RESULT([checking for Botan library... yes])],
  665. [AC_MSG_RESULT([checking for Botan library... no])
  666. AC_MSG_ERROR([Needs Botan library 1.8 or higher. On some systems,
  667. the botan package has a few missing dependencies (libbz2 and
  668. libgmp), if libbotan has been installed and you see this error,
  669. try upgrading to a higher version of botan or installing libbz2
  670. and libgmp.])]
  671. )
  672. CPPFLAGS=$CPPFLAGS_SAVED
  673. LIBS=$LIBS_SAVED
  674. # Check for MySql. The path to the mysql_config program is given with
  675. # the --with-mysql-config (default to /usr/bin/mysql-config). By default,
  676. # the software is not built with MySQL support enabled.
  677. mysql_config="no"
  678. AC_ARG_WITH([dhcp-mysql],
  679. AC_HELP_STRING([--with-dhcp-mysql=PATH],
  680. [path to the MySQL 'mysql_config' script (MySQL is used for the DHCP database)]),
  681. [mysql_config="$withval"])
  682. if test "${mysql_config}" = "yes" ; then
  683. MYSQL_CONFIG="/usr/bin/mysql_config"
  684. elif test "${mysql_config}" != "no" ; then
  685. MYSQL_CONFIG="${withval}"
  686. fi
  687. if test "$MYSQL_CONFIG" != "" ; then
  688. if test -d "$MYSQL_CONFIG" -o ! -x "$MYSQL_CONFIG" ; then
  689. AC_MSG_ERROR([--with-dhcp-mysql should point to a mysql_config program])
  690. fi
  691. MYSQL_CPPFLAGS=`$MYSQL_CONFIG --cflags`
  692. MYSQL_LIBS=`$MYSQL_CONFIG --libs`
  693. AC_SUBST(MYSQL_CPPFLAGS)
  694. AC_SUBST(MYSQL_LIBS)
  695. # Check that a simple program using MySQL functions can compile and link.
  696. CPPFLAGS_SAVED="$CPPFLAGS"
  697. LIBS_SAVED="$LIBS"
  698. CPPFLAGS="$MYSQL_CPPFLAGS $CPPFLAGS"
  699. LIBS="$MYSQL_LIBS $LIBS"
  700. AC_LINK_IFELSE(
  701. [AC_LANG_PROGRAM([#include <mysql.h>],
  702. [MYSQL mysql_handle;
  703. (void) mysql_init(&mysql_handle);
  704. ])],
  705. [AC_MSG_RESULT([checking for MySQL headers and library... yes])],
  706. [AC_MSG_RESULT([checking for MySQL headers and library... no])
  707. AC_MSG_ERROR([Needs MySQL library])]
  708. )
  709. CPPFLAGS=$CPPFLAGS_SAVED
  710. LIBS=$LIBS_SAVED
  711. # Note that MYSQL is present in the config.h file
  712. AC_DEFINE([HAVE_MYSQL], [1], [MySQL is present])
  713. fi
  714. # ... and at the shell level, so Makefile.am can take action depending on this.
  715. AM_CONDITIONAL(HAVE_MYSQL, test "$MYSQL_CONFIG" != "")
  716. # Check for log4cplus
  717. log4cplus_path="yes"
  718. AC_ARG_WITH([log4cplus],
  719. AC_HELP_STRING([--with-log4cplus=PATH],
  720. [specify exact directory of log4cplus library and headers]),
  721. [log4cplus_path="$withval"])
  722. if test "${log4cplus_path}" = "no" ; then
  723. AC_MSG_ERROR([Need log4cplus])
  724. elif test "${log4cplus_path}" != "yes" ; then
  725. LOG4CPLUS_INCLUDES="-I${log4cplus_path}/include"
  726. LOG4CPLUS_LIBS="-L${log4cplus_path}/lib"
  727. else
  728. # If not specified, try some common paths.
  729. log4cplusdirs="/usr/local /usr/pkg /opt /opt/local"
  730. for d in $log4cplusdirs
  731. do
  732. if test -f $d/include/log4cplus/logger.h; then
  733. LOG4CPLUS_INCLUDES="-I$d/include"
  734. LOG4CPLUS_LIBS="-L$d/lib"
  735. break
  736. fi
  737. done
  738. fi
  739. LOG4CPLUS_LIBS="$LOG4CPLUS_LIBS -llog4cplus $MULTITHREADING_FLAG"
  740. AC_SUBST(LOG4CPLUS_LIBS)
  741. AC_SUBST(LOG4CPLUS_INCLUDES)
  742. CPPFLAGS_SAVED=$CPPFLAGS
  743. CPPFLAGS="$LOG4CPLUS_INCLUDES $CPPFLAGS"
  744. LIBS_SAVED="$LIBS"
  745. LIBS="$LOG4CPLUS_LIBS $LIBS"
  746. AC_CHECK_HEADERS([log4cplus/logger.h],,AC_MSG_ERROR([Missing required header files.]))
  747. AC_LINK_IFELSE(
  748. [AC_LANG_PROGRAM([#include <log4cplus/logger.h>
  749. ],
  750. [using namespace log4cplus;
  751. Logger logger = Logger::getInstance("main");
  752. ])],
  753. [AC_MSG_RESULT([checking for log4cplus library... yes])],
  754. [AC_MSG_RESULT([checking for log4cplus library... no])
  755. AC_MSG_ERROR([Needs log4cplus library])]
  756. )
  757. CPPFLAGS=$CPPFLAGS_SAVED
  758. LIBS=$LIBS_SAVED
  759. #
  760. # Configure Boost header path
  761. #
  762. AX_BOOST_FOR_BIND10
  763. # Boost offset_ptr is required in one library and not optional right now, so
  764. # we unconditionally fail here if it doesn't work.
  765. if test "$BOOST_OFFSET_PTR_FAILURE" = "yes"; then
  766. AC_MSG_ERROR([Failed to compile a required header file. Try upgrading Boost to 1.44 or higher (when using clang++) or specifying --without-werror. See the ChangeLog entry for Trac no. 2147 for more details.])
  767. fi
  768. # There's a known bug in FreeBSD ports for Boost that would trigger a false
  769. # warning in build with g++ and -Werror (we exclude clang++ explicitly to
  770. # avoid unexpected false positives).
  771. if test "$BOOST_NUMERIC_CAST_WOULDFAIL" = "yes" -a X"$werror_ok" = X1 -a $CLANGPP = "no"; then
  772. AC_MSG_ERROR([Failed to compile a required header file. If you are using FreeBSD and Boost installed via ports, retry with specifying --without-werror. See the ChangeLog entry for Trac no. 1991 for more details.])
  773. fi
  774. # Add some default CPP flags needed for Boost, identified by the AX macro.
  775. CPPFLAGS="$CPPFLAGS $CPPFLAGS_BOOST_THREADCONF"
  776. # I can't get some of the #include <asio.hpp> right without this
  777. # TODO: find the real cause of asio/boost wanting pthreads
  778. # (this currently only occurs for src/lib/cc/session_unittests)
  779. PTHREAD_LDFLAGS=
  780. AC_CHECK_LIB(pthread, pthread_create,[ PTHREAD_LDFLAGS=-lpthread ], [])
  781. AC_SUBST(PTHREAD_LDFLAGS)
  782. AC_SUBST(MULTITHREADING_FLAG)
  783. #
  784. # Check availability of gtest, which will be used for unit tests.
  785. #
  786. GTEST_LDFLAGS=
  787. GTEST_LDADD=
  788. DISTCHECK_GTEST_CONFIGURE_FLAG=
  789. if test "x$enable_gtest" = "xyes" ; then
  790. DISTCHECK_GTEST_CONFIGURE_FLAG="--with-gtest=$gtest_path"
  791. if test -n "$with_gtest_source" ; then
  792. if test "x$GTEST_SOURCE" = "xyes" ; then
  793. AC_MSG_CHECKING([for gtest source])
  794. # If not specified, try some common paths.
  795. GTEST_SOURCE=
  796. for d in /usr/src/gtest /usr/local /usr/pkg /opt /opt/local ; do
  797. if test -f $d/src/gtest-all.cc -a $d/src/gtest_main.cc; then
  798. GTEST_SOURCE=$d
  799. AC_MSG_RESULT([$GTEST_SOURCE])
  800. break
  801. fi
  802. done
  803. if test -z $GTEST_SOURCE ; then
  804. AC_MSG_ERROR([no gtest source but it was selected])
  805. fi
  806. else
  807. AC_CHECK_FILES([$GTEST_SOURCE/src/gtest-all.cc]
  808. [$GTEST_SOURCE/src/gtest_main.cc],
  809. [have_gtest_source=yes],
  810. [AC_MSG_ERROR([no gtest source at $GTEST_SOURCE])])
  811. fi
  812. have_gtest_source=yes
  813. GTEST_LDFLAGS="\$(top_builddir)/libgtest.a"
  814. DISTCHECK_GTEST_CONFIGURE_FLAG="--with-gtest-source=$GTEST_SOURCE"
  815. GTEST_INCLUDES="-I$GTEST_SOURCE -I$GTEST_SOURCE/include"
  816. # See $GTEST_SOURCE/include/gtest/internal/gtest-port.h
  817. # about GTEST_HAS_PTHREAD.
  818. case "$host" in
  819. *-solaris*|*-linux*|*-hpux*)
  820. GTEST_LDADD="$GTEST_LDADD $PTHREAD_LDFLAGS"
  821. ;;
  822. esac
  823. fi
  824. if test "$gtest_path" != "no" ; then
  825. if test "$gtest_path" != "yes"; then
  826. GTEST_PATHS=$gtest_path
  827. if test -x "${gtest_path}/bin/gtest-config" ; then
  828. GTEST_CONFIG="${gtest_path}/bin/gtest-config"
  829. fi
  830. else
  831. AC_PATH_PROG([GTEST_CONFIG], [gtest-config])
  832. fi
  833. if test -x "${GTEST_CONFIG}" ; then :
  834. # using cppflags instead of cxxflags
  835. GTEST_INCLUDES=`${GTEST_CONFIG} --cppflags`
  836. GTEST_LDFLAGS=`${GTEST_CONFIG} --ldflags`
  837. GTEST_LDADD=`${GTEST_CONFIG} --libs`
  838. GTEST_FOUND="true"
  839. else
  840. AC_MSG_WARN([Unable to locate Google Test gtest-config.])
  841. if test -z "${GTEST_PATHS}" ; then
  842. GTEST_PATHS="/usr /usr/local"
  843. fi
  844. GTEST_FOUND="false"
  845. fi
  846. if test "${GTEST_FOUND}" != "true"; then
  847. GTEST_FOUND="false"
  848. for dir in $GTEST_PATHS; do
  849. if test -f "$dir/include/gtest/gtest.h"; then
  850. GTEST_INCLUDES="-I$dir/include"
  851. GTEST_LDFLAGS="-L$dir/lib"
  852. GTEST_LDADD="-lgtest"
  853. GTEST_FOUND="true"
  854. # There is no gtest-config script on this
  855. # system, which is supposed to inform us
  856. # whether we need pthreads as well (a
  857. # gtest compile-time option). So we still
  858. # need to test that manually.
  859. CPPFLAGS_SAVED="$CPPFLAGS"
  860. CPPFLAGS="$CPPFLAGS $GTEST_INCLUDES"
  861. LDFLAGS_SAVED="$LDFLAGS"
  862. LDFLAGS="$LDFLAGS $GTEST_LDFLAGS"
  863. LIBS_SAVED=$LIBS
  864. LIBS="$LIBS $GTEST_LDADD"
  865. AC_MSG_CHECKING([Checking whether gtest tests need pthreads])
  866. # First try to compile without pthreads
  867. AC_TRY_LINK([
  868. #include <gtest/gtest.h>
  869. ],[
  870. int i = 0;
  871. char* c = NULL;
  872. ::testing::InitGoogleTest(&i, &c);
  873. return (0);
  874. ],
  875. [ AC_MSG_RESULT(no) ],
  876. [
  877. LIBS="$SAVED_LIBS $GTEST_LDADD $PTHREAD_LDFLAGS"
  878. # Now try to compile with pthreads
  879. AC_TRY_LINK([
  880. #include <gtest/gtest.h>
  881. ],[
  882. int i = 0;
  883. char* c = NULL;
  884. ::testing::InitGoogleTest(&i, &c);
  885. return (0);
  886. ],
  887. [ AC_MSG_RESULT(yes)
  888. GTEST_LDADD="$GTEST_LDADD $PTHREAD_LDFLAGS"
  889. ],
  890. # Apparently we can't compile it at all
  891. [ AC_MSG_ERROR(unable to compile with gtest) ])
  892. ])
  893. CPPFLAGS=$CPPFLAGS_SAVED
  894. LDFLAGS=$LDFLAGS_SAVED
  895. LIBS=$LIBS_SAVED
  896. break
  897. fi
  898. done
  899. fi
  900. if test "${GTEST_FOUND}" != "true"; then
  901. AC_MSG_ERROR([Cannot find gtest in: $GTEST_PATHS])
  902. fi
  903. fi
  904. fi
  905. AM_CONDITIONAL(HAVE_GTEST, test $enable_gtest != "no")
  906. AM_CONDITIONAL(HAVE_GTEST_SOURCE, test "X$have_gtest_source" = "Xyes")
  907. AC_SUBST(DISTCHECK_GTEST_CONFIGURE_FLAG)
  908. AC_SUBST(GTEST_INCLUDES)
  909. AC_SUBST(GTEST_LDFLAGS)
  910. AC_SUBST(GTEST_LDADD)
  911. AC_SUBST(GTEST_SOURCE)
  912. dnl check for pkg-config itself so we don't try the m4 macro without pkg-config
  913. AC_CHECK_PROG(HAVE_PKG_CONFIG, pkg-config, yes, no)
  914. if test "x$HAVE_PKG_CONFIG" = "xno" ; then
  915. AC_MSG_ERROR(Please install pkg-config)
  916. fi
  917. PKG_CHECK_MODULES(SQLITE, sqlite3 >= 3.3.9, enable_features="$enable_features SQLite3")
  918. #
  919. # ASIO: we extensively use it as the C++ event management module.
  920. #
  921. # Use local ASIO headers from ext
  922. #
  923. CPPFLAGS="$CPPFLAGS -I\$(top_srcdir)/ext/asio"
  924. #
  925. # Use our 'coroutine' header from ext
  926. CPPFLAGS="$CPPFLAGS -I\$(top_srcdir)/ext/coroutine"
  927. #
  928. # Disable threads: Currently we don't use them.
  929. CPPFLAGS="$CPPFLAGS -DASIO_DISABLE_THREADS=1"
  930. # Check for functions that are not available on all platforms
  931. AC_CHECK_FUNCS([pselect])
  932. # /dev/poll issue: ASIO uses /dev/poll by default if it's available (generally
  933. # the case with Solaris). Unfortunately its /dev/poll specific code would
  934. # trigger the gcc's "missing-field-initializers" warning, which would
  935. # subsequently make the build fail with -Werror. Further, older versions of
  936. # gcc don't provide an option to selectively suppress this warning.
  937. # So, for the moment, we simply disable the use of /dev/poll. Unless we
  938. # implement recursive DNS server with randomized ports, we don't need the
  939. # scalability that /dev/poll can provide, so this decision wouldn't affect
  940. # run time performance. Hopefully we can find a better solution or the ASIO
  941. # code will be updated by the time we really need it.
  942. AC_CHECK_HEADERS(sys/devpoll.h, ac_cv_have_devpoll=yes, ac_cv_have_devpoll=no)
  943. if test "X$ac_cv_have_devpoll" = "Xyes" -a "X$GXX" = "Xyes"; then
  944. CPPFLAGS="$CPPFLAGS -DASIO_DISABLE_DEV_POLL=1"
  945. fi
  946. #
  947. # Perl is optional; it is used only by some of the system test scripts.
  948. #
  949. AC_PATH_PROGS(PERL, perl5 perl)
  950. AC_SUBST(PERL)
  951. AC_PATH_PROGS(AWK, gawk awk)
  952. AC_SUBST(AWK)
  953. AC_ARG_ENABLE(generate_docs, [AC_HELP_STRING([--enable-generate-docs],
  954. [regenerate documentation using Docbook [default=no]])],
  955. enable_generate_docs=$enableval, enable_generate_docs=no)
  956. # Check for xsltproc
  957. if test "x$enable_generate_docs" != xno ; then
  958. AC_PATH_PROG([XSLTPROC], [xsltproc])
  959. if test -z "$XSLTPROC"; then
  960. AC_MSG_ERROR("xsltproc not found; it is required for --enable-generate-docs")
  961. else
  962. AC_MSG_CHECKING([if $XSLTPROC works])
  963. # run xsltproc to see if works
  964. $XSLTPROC --novalid --xinclude --nonet http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
  965. if test $? -ne 0 ; then
  966. AC_MSG_ERROR("Error with $XSLTPROC using release/xsl/current/manpages/docbook.xsl")
  967. fi
  968. $XSLTPROC --novalid --xinclude --nonet http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl
  969. if test $? -ne 0 ; then
  970. AC_MSG_ERROR("Error with $XSLTPROC using release/xsl/current/html/docbook.xsl")
  971. fi
  972. AC_MSG_RESULT(yes)
  973. fi
  974. fi
  975. AM_CONDITIONAL(GENERATE_DOCS, test x$enable_generate_docs != xno)
  976. AC_ARG_ENABLE(install-configurations,
  977. [AC_HELP_STRING([--disable-install-configurations],
  978. [do not install configuration])], install_configurations=$enableval, install_configurations=yes)
  979. AM_CONDITIONAL(INSTALL_CONFIGURATIONS, test x$install_configurations = xyes || test x$install_configurations = xtrue)
  980. AC_ARG_ENABLE(logger-checks, [AC_HELP_STRING([--enable-logger-checks],
  981. [check logger messages [default=no]])], enable_logger_checks=$enableval, enable_logger_checks=no)
  982. AM_CONDITIONAL(ENABLE_LOGGER_CHECKS, test x$enable_logger_checks != xno)
  983. AM_COND_IF([ENABLE_LOGGER_CHECKS], [AC_DEFINE([ENABLE_LOGGER_CHECKS], [1], [Check logger messages?])])
  984. # Check for valgrind
  985. AC_PATH_PROG(VALGRIND, valgrind, no)
  986. AM_CONDITIONAL(HAVE_VALGRIND, test "x$VALGRIND" != "xno")
  987. # Also check for valgrind headers
  988. # We could consider adding them to the source code tree, as this
  989. # is the encouraged method of using them; they are BSD-licensed.
  990. # However, until we find that this is a problem, we just use
  991. # the system-provided ones, if available
  992. AC_CHECK_HEADERS(valgrind/valgrind.h, [AC_DEFINE([HAVE_VALGRIND_HEADERS], [1], [Check valgrind headers])])
  993. found_valgrind="not found"
  994. if test "x$VALGRIND" != "xno"; then
  995. found_valgrind="found"
  996. fi
  997. # Check for optreset in unistd.h. On BSD systems the optreset is
  998. # used to reset the state of getopt() function. Resetting its state
  999. # is required if command line arguments are parsed multiple times
  1000. # during a program. On Linux this variable will not exist because
  1001. # getopt() reset is performed by setting optind = 0. On Operating
  1002. # Systems where optreset is defined use optreset = 1 and optind = 1
  1003. # to reset internal state of getopt(). Failing to do so will result
  1004. # in unpredictable output from getopt().
  1005. AC_MSG_CHECKING([whether optreset variable is defined in unistd.h])
  1006. AC_TRY_LINK(
  1007. [#include <unistd.h>],
  1008. [extern int optreset; optreset=1;],
  1009. [ AC_MSG_RESULT(yes)
  1010. var_optreset_exists=yes],
  1011. [ AC_MSG_RESULT(no)
  1012. var_optreset_exists=no]
  1013. )
  1014. AM_CONDITIONAL(HAVE_OPTRESET, test "x$var_optreset_exists" != "xno")
  1015. AM_COND_IF([HAVE_OPTRESET], [AC_DEFINE([HAVE_OPTRESET], [1], [Check for optreset?])])
  1016. AC_CONFIG_FILES([Makefile
  1017. doc/Makefile
  1018. doc/guide/Makefile
  1019. compatcheck/Makefile
  1020. src/Makefile
  1021. src/bin/Makefile
  1022. src/bin/bind10/bind10
  1023. src/bin/bind10/Makefile
  1024. src/bin/bind10/tests/Makefile
  1025. src/bin/cmdctl/Makefile
  1026. src/bin/cmdctl/tests/Makefile
  1027. src/bin/bindctl/Makefile
  1028. src/bin/bindctl/tests/Makefile
  1029. src/bin/cfgmgr/Makefile
  1030. src/bin/cfgmgr/local_plugins/Makefile
  1031. src/bin/cfgmgr/plugins/Makefile
  1032. src/bin/cfgmgr/plugins/tests/Makefile
  1033. src/bin/cfgmgr/tests/Makefile
  1034. src/bin/dbutil/Makefile
  1035. src/bin/dbutil/tests/Makefile
  1036. src/bin/dbutil/tests/testdata/Makefile
  1037. src/bin/loadzone/Makefile
  1038. src/bin/loadzone/tests/Makefile
  1039. src/bin/loadzone/tests/correct/Makefile
  1040. src/bin/msgq/Makefile
  1041. src/bin/msgq/tests/Makefile
  1042. src/bin/auth/Makefile
  1043. src/bin/auth/tests/Makefile
  1044. src/bin/auth/tests/testdata/Makefile
  1045. src/bin/auth/benchmarks/Makefile
  1046. src/bin/ddns/Makefile
  1047. src/bin/ddns/tests/Makefile
  1048. src/bin/dhcp6/Makefile
  1049. src/bin/dhcp6/tests/Makefile
  1050. src/bin/dhcp4/Makefile
  1051. src/bin/dhcp4/tests/Makefile
  1052. src/bin/resolver/Makefile
  1053. src/bin/resolver/tests/Makefile
  1054. src/bin/sysinfo/Makefile
  1055. src/bin/sockcreator/Makefile
  1056. src/bin/sockcreator/tests/Makefile
  1057. src/bin/xfrin/Makefile
  1058. src/bin/xfrin/tests/Makefile
  1059. src/bin/xfrin/tests/testdata/Makefile
  1060. src/bin/xfrout/Makefile
  1061. src/bin/xfrout/tests/Makefile
  1062. src/bin/zonemgr/Makefile
  1063. src/bin/zonemgr/tests/Makefile
  1064. src/bin/stats/Makefile
  1065. src/bin/stats/tests/Makefile
  1066. src/bin/stats/tests/testdata/Makefile
  1067. src/bin/usermgr/Makefile
  1068. src/bin/tests/Makefile
  1069. src/lib/Makefile
  1070. src/lib/asiolink/Makefile
  1071. src/lib/asiolink/tests/Makefile
  1072. src/lib/asiodns/Makefile
  1073. src/lib/asiodns/tests/Makefile
  1074. src/lib/bench/Makefile
  1075. src/lib/bench/example/Makefile
  1076. src/lib/bench/tests/Makefile
  1077. src/lib/cc/Makefile
  1078. src/lib/cc/tests/Makefile
  1079. src/lib/python/Makefile
  1080. src/lib/python/isc/Makefile
  1081. src/lib/python/isc/acl/Makefile
  1082. src/lib/python/isc/acl/tests/Makefile
  1083. src/lib/python/isc/util/Makefile
  1084. src/lib/python/isc/util/tests/Makefile
  1085. src/lib/python/isc/util/cio/Makefile
  1086. src/lib/python/isc/util/cio/tests/Makefile
  1087. src/lib/python/isc/datasrc/Makefile
  1088. src/lib/python/isc/datasrc/tests/Makefile
  1089. src/lib/python/isc/dns/Makefile
  1090. src/lib/python/isc/cc/Makefile
  1091. src/lib/python/isc/cc/tests/Makefile
  1092. src/lib/python/isc/config/Makefile
  1093. src/lib/python/isc/config/tests/Makefile
  1094. src/lib/python/isc/log/Makefile
  1095. src/lib/python/isc/log/tests/Makefile
  1096. src/lib/python/isc/log_messages/Makefile
  1097. src/lib/python/isc/log_messages/work/Makefile
  1098. src/lib/python/isc/net/Makefile
  1099. src/lib/python/isc/net/tests/Makefile
  1100. src/lib/python/isc/notify/Makefile
  1101. src/lib/python/isc/notify/tests/Makefile
  1102. src/lib/python/isc/testutils/Makefile
  1103. src/lib/python/isc/bind10/Makefile
  1104. src/lib/python/isc/bind10/tests/Makefile
  1105. src/lib/python/isc/ddns/Makefile
  1106. src/lib/python/isc/ddns/tests/Makefile
  1107. src/lib/python/isc/xfrin/Makefile
  1108. src/lib/python/isc/xfrin/tests/Makefile
  1109. src/lib/python/isc/server_common/Makefile
  1110. src/lib/python/isc/server_common/tests/Makefile
  1111. src/lib/python/isc/sysinfo/Makefile
  1112. src/lib/python/isc/sysinfo/tests/Makefile
  1113. src/lib/python/isc/statistics/Makefile
  1114. src/lib/python/isc/statistics/tests/Makefile
  1115. src/lib/config/Makefile
  1116. src/lib/config/tests/Makefile
  1117. src/lib/config/tests/testdata/Makefile
  1118. src/lib/cryptolink/Makefile
  1119. src/lib/cryptolink/tests/Makefile
  1120. src/lib/dns/Makefile
  1121. src/lib/dns/tests/Makefile
  1122. src/lib/dns/tests/testdata/Makefile
  1123. src/lib/dns/python/Makefile
  1124. src/lib/dns/python/tests/Makefile
  1125. src/lib/dns/benchmarks/Makefile
  1126. src/lib/dhcp/Makefile
  1127. src/lib/dhcp/tests/Makefile
  1128. src/lib/dhcpsrv/Makefile
  1129. src/lib/dhcpsrv/tests/Makefile
  1130. src/lib/exceptions/Makefile
  1131. src/lib/exceptions/tests/Makefile
  1132. src/lib/datasrc/Makefile
  1133. src/lib/datasrc/memory/Makefile
  1134. src/lib/datasrc/memory/benchmarks/Makefile
  1135. src/lib/datasrc/tests/Makefile
  1136. src/lib/datasrc/tests/testdata/Makefile
  1137. src/lib/datasrc/tests/memory/Makefile
  1138. src/lib/datasrc/tests/memory/testdata/Makefile
  1139. src/lib/xfr/Makefile
  1140. src/lib/xfr/tests/Makefile
  1141. src/lib/log/Makefile
  1142. src/lib/log/compiler/Makefile
  1143. src/lib/log/tests/Makefile
  1144. src/lib/resolve/Makefile
  1145. src/lib/resolve/tests/Makefile
  1146. src/lib/testutils/Makefile
  1147. src/lib/testutils/testdata/Makefile
  1148. src/lib/nsas/Makefile
  1149. src/lib/nsas/tests/Makefile
  1150. src/lib/cache/Makefile
  1151. src/lib/cache/tests/Makefile
  1152. src/lib/server_common/Makefile
  1153. src/lib/server_common/tests/Makefile
  1154. src/lib/util/Makefile
  1155. src/lib/util/io/Makefile
  1156. src/lib/util/threads/Makefile
  1157. src/lib/util/threads/tests/Makefile
  1158. src/lib/util/unittests/Makefile
  1159. src/lib/util/python/Makefile
  1160. src/lib/util/pyunittests/Makefile
  1161. src/lib/util/tests/Makefile
  1162. src/lib/acl/Makefile
  1163. src/lib/acl/tests/Makefile
  1164. src/lib/statistics/Makefile
  1165. src/lib/statistics/tests/Makefile
  1166. tests/Makefile
  1167. tests/system/Makefile
  1168. tests/tools/Makefile
  1169. tests/tools/badpacket/Makefile
  1170. tests/tools/badpacket/tests/Makefile
  1171. tests/tools/perfdhcp/Makefile
  1172. tests/tools/perfdhcp/tests/Makefile
  1173. tests/tools/perfdhcp/tests/testdata/Makefile
  1174. dns++.pc
  1175. ])
  1176. AC_OUTPUT([doc/version.ent
  1177. src/bin/cfgmgr/b10-cfgmgr.py
  1178. src/bin/cfgmgr/tests/b10-cfgmgr_test.py
  1179. src/bin/cfgmgr/plugins/datasrc.spec.pre
  1180. src/bin/cmdctl/cmdctl.py
  1181. src/bin/cmdctl/run_b10-cmdctl.sh
  1182. src/bin/cmdctl/tests/cmdctl_test
  1183. src/bin/cmdctl/cmdctl.spec.pre
  1184. src/bin/dbutil/dbutil.py
  1185. src/bin/dbutil/run_dbutil.sh
  1186. src/bin/dbutil/tests/dbutil_test.sh
  1187. src/bin/ddns/ddns.py
  1188. src/bin/xfrin/tests/xfrin_test
  1189. src/bin/xfrin/xfrin.py
  1190. src/bin/xfrin/run_b10-xfrin.sh
  1191. src/bin/xfrout/xfrout.py
  1192. src/bin/xfrout/xfrout.spec.pre
  1193. src/bin/xfrout/tests/xfrout_test
  1194. src/bin/xfrout/tests/xfrout_test.py
  1195. src/bin/xfrout/run_b10-xfrout.sh
  1196. src/bin/resolver/resolver.spec.pre
  1197. src/bin/resolver/spec_config.h.pre
  1198. src/bin/zonemgr/zonemgr.py
  1199. src/bin/zonemgr/zonemgr.spec.pre
  1200. src/bin/zonemgr/tests/zonemgr_test
  1201. src/bin/zonemgr/run_b10-zonemgr.sh
  1202. src/bin/sysinfo/sysinfo.py
  1203. src/bin/sysinfo/run_sysinfo.sh
  1204. src/bin/stats/stats.py
  1205. src/bin/stats/stats_httpd.py
  1206. src/bin/bind10/init.py
  1207. src/bin/bind10/run_bind10.sh
  1208. src/bin/bind10/tests/bind10_test.py
  1209. src/bin/bindctl/run_bindctl.sh
  1210. src/bin/bindctl/bindctl_main.py
  1211. src/bin/bindctl/tests/bindctl_test
  1212. src/bin/loadzone/run_loadzone.sh
  1213. src/bin/loadzone/tests/correct/correct_test.sh
  1214. src/bin/loadzone/loadzone.py
  1215. src/bin/usermgr/run_b10-cmdctl-usermgr.sh
  1216. src/bin/usermgr/b10-cmdctl-usermgr.py
  1217. src/bin/msgq/msgq.py
  1218. src/bin/msgq/run_msgq.sh
  1219. src/bin/auth/auth.spec.pre
  1220. src/bin/auth/spec_config.h.pre
  1221. src/bin/auth/tests/testdata/example.zone
  1222. src/bin/auth/tests/testdata/example-base.zone
  1223. src/bin/auth/tests/testdata/example-nsec3.zone
  1224. src/bin/dhcp4/spec_config.h.pre
  1225. src/bin/dhcp6/spec_config.h.pre
  1226. src/bin/tests/process_rename_test.py
  1227. src/lib/config/tests/data_def_unittests_config.h
  1228. src/lib/python/isc/config/tests/config_test
  1229. src/lib/python/isc/cc/tests/cc_test
  1230. src/lib/python/isc/notify/tests/notify_out_test
  1231. src/lib/python/isc/log/tests/log_console.py
  1232. src/lib/python/isc/log_messages/work/__init__.py
  1233. src/lib/dns/gen-rdatacode.py
  1234. src/lib/python/bind10_config.py
  1235. src/lib/cc/session_config.h.pre
  1236. src/lib/cc/tests/session_unittests_config.h
  1237. src/lib/datasrc/datasrc_config.h.pre
  1238. src/lib/log/tests/console_test.sh
  1239. src/lib/log/tests/destination_test.sh
  1240. src/lib/log/tests/init_logger_test.sh
  1241. src/lib/log/tests/buffer_logger_test.sh
  1242. src/lib/log/tests/local_file_test.sh
  1243. src/lib/log/tests/logger_lock_test.sh
  1244. src/lib/log/tests/severity_test.sh
  1245. src/lib/log/tests/tempdir.h
  1246. src/lib/util/python/mkpywrapper.py
  1247. src/lib/util/python/gen_wiredata.py
  1248. src/lib/server_common/tests/data_path.h
  1249. tests/lettuce/setup_intree_bind10.sh
  1250. tests/system/conf.sh
  1251. tests/system/run.sh
  1252. tests/system/glue/setup.sh
  1253. tests/system/glue/nsx1/b10-config.db
  1254. tests/system/bindctl/nsx1/b10-config.db.template
  1255. tests/system/ixfr/db.example.n0
  1256. tests/system/ixfr/db.example.n2
  1257. tests/system/ixfr/db.example.n2.refresh
  1258. tests/system/ixfr/db.example.n4
  1259. tests/system/ixfr/db.example.n6
  1260. tests/system/ixfr/ixfr_init.sh
  1261. tests/system/ixfr/b10-config.db
  1262. tests/system/ixfr/common_tests.sh
  1263. tests/system/ixfr/in-1/setup.sh
  1264. tests/system/ixfr/in-2/setup.sh
  1265. tests/system/ixfr/in-3/setup.sh
  1266. tests/system/ixfr/in-4/setup.sh
  1267. ], [
  1268. chmod +x src/bin/cmdctl/run_b10-cmdctl.sh
  1269. chmod +x src/bin/xfrin/run_b10-xfrin.sh
  1270. chmod +x src/bin/xfrout/run_b10-xfrout.sh
  1271. chmod +x src/bin/zonemgr/run_b10-zonemgr.sh
  1272. chmod +x src/bin/bind10/bind10
  1273. chmod +x src/bin/bind10/run_bind10.sh
  1274. chmod +x src/bin/cmdctl/tests/cmdctl_test
  1275. chmod +x src/bin/dbutil/run_dbutil.sh
  1276. chmod +x src/bin/dbutil/tests/dbutil_test.sh
  1277. chmod +x src/bin/xfrin/tests/xfrin_test
  1278. chmod +x src/bin/xfrout/tests/xfrout_test
  1279. chmod +x src/bin/zonemgr/tests/zonemgr_test
  1280. chmod +x src/bin/bindctl/tests/bindctl_test
  1281. chmod +x src/bin/bindctl/run_bindctl.sh
  1282. chmod +x src/bin/loadzone/run_loadzone.sh
  1283. chmod +x src/bin/loadzone/tests/correct/correct_test.sh
  1284. chmod +x src/bin/sysinfo/run_sysinfo.sh
  1285. chmod +x src/bin/usermgr/run_b10-cmdctl-usermgr.sh
  1286. chmod +x src/bin/msgq/run_msgq.sh
  1287. chmod +x src/lib/dns/gen-rdatacode.py
  1288. chmod +x src/lib/log/tests/console_test.sh
  1289. chmod +x src/lib/log/tests/destination_test.sh
  1290. chmod +x src/lib/log/tests/init_logger_test.sh
  1291. chmod +x src/lib/log/tests/local_file_test.sh
  1292. chmod +x src/lib/log/tests/logger_lock_test.sh
  1293. chmod +x src/lib/log/tests/severity_test.sh
  1294. chmod +x src/lib/util/python/mkpywrapper.py
  1295. chmod +x src/lib/util/python/gen_wiredata.py
  1296. chmod +x src/lib/python/isc/log/tests/log_console.py
  1297. chmod +x tests/system/conf.sh
  1298. chmod +x tests/system/run.sh
  1299. chmod +x tests/system/ixfr/ixfr_init.sh
  1300. chmod +x tests/system/ixfr/common_tests.sh
  1301. chmod +x tests/system/ixfr/in-1/setup.sh
  1302. chmod +x tests/system/ixfr/in-2/setup.sh
  1303. chmod +x tests/system/ixfr/in-3/setup.sh
  1304. chmod +x tests/system/ixfr/in-4/setup.sh
  1305. ])
  1306. AC_OUTPUT
  1307. dnl Print the results
  1308. dnl
  1309. cat > config.report << END
  1310. BIND 10 source configure results:
  1311. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  1312. Package:
  1313. Name: $PACKAGE_NAME
  1314. Version: $PACKAGE_VERSION
  1315. C++ Compiler: $CXX
  1316. Flags:
  1317. DEFS: $DEFS
  1318. CPPFLAGS: $CPPFLAGS
  1319. CXXFLAGS: $CXXFLAGS
  1320. LDFLAGS: $LDFLAGS
  1321. B10_CXXFLAGS: $B10_CXXFLAGS
  1322. OS Family: $OS_TYPE
  1323. dnl includes too
  1324. Python: ${PYTHON_INCLUDES}
  1325. ${PYTHON_CXXFLAGS}
  1326. ${PYTHON_LDFLAGS}
  1327. ${PYTHON_LIB}
  1328. Boost: ${BOOST_INCLUDES}
  1329. Botan: ${BOTAN_INCLUDES}
  1330. ${BOTAN_LDFLAGS}
  1331. ${BOTAN_LIBS}
  1332. Log4cplus: ${LOG4CPLUS_INCLUDES}
  1333. ${LOG4CPLUS_LIBS}
  1334. SQLite: $SQLITE_CFLAGS
  1335. $SQLITE_LIBS
  1336. END
  1337. # Avoid confusion on DNS/DHCP and only mention MySQL if it
  1338. # were specified on the command line.
  1339. if test "$MYSQL_CPPFLAGS" != "" ; then
  1340. cat >> config.report << END
  1341. MySQL: $MYSQL_CPPFLAGS
  1342. $MYSQL_LIBS
  1343. END
  1344. fi
  1345. cat >> config.report << END
  1346. Features:
  1347. $enable_features
  1348. Developer:
  1349. Enable Debugging: $debug_enabled
  1350. Google Tests: $enable_gtest
  1351. Valgrind: $found_valgrind
  1352. C++ Code Coverage: $USE_LCOV
  1353. Python Code Coverage: $USE_PYCOVERAGE
  1354. Logger checks: $enable_logger_checks
  1355. Generate Documentation: $enable_generate_docs
  1356. END
  1357. cat config.report
  1358. cat <<EOF
  1359. Now you can type "make" to build BIND 10
  1360. EOF