configure.ac 53 KB

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