2012-10-22 21:28:41 +01:00
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
2009-10-16 06:20:23 +00:00
2009-11-05 14:05:26 +00:00
AC_PREREQ([2.59])
2014-04-15 10:23:10 +02:00
AC_INIT(bind10, 20140313, kea-dev@isc.org)
2009-10-16 06:20:23 +00:00
AC_CONFIG_SRCDIR(README)
2014-01-07 17:02:33 +05:30
# serial-tests is not available in automake version before 1.13, so
# we'll check that and conditionally use serial-tests. This check is
# adopted from code by Richard W.M. Jones:
# https://www.redhat.com/archives/libguestfs/2013-February/msg00102.html
m4_define([serial_tests], [
m4_esyscmd([automake --version |
head -1 |
awk '{split ($NF,a,"."); if (a[1] == 1 && a[2] >= 12) { print "serial-tests" }}'
])
])
AM_INIT_AUTOMAKE(foreign serial_tests)
2012-02-16 11:48:40 +01:00
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])dnl be backward compatible
2009-10-16 06:20:23 +00:00
AC_CONFIG_HEADERS([config.h])
2012-04-30 09:32:17 +05:30
AC_CONFIG_MACRO_DIR([m4macros])
2009-10-16 06:20:23 +00:00
# Checks for programs.
AC_PROG_CXX
2011-01-07 11:59:03 -08:00
2012-10-23 09:25:20 +05:30
# Enable low-performing debugging facilities? This option optionally
# enables some debugging aids that perform slowly and hence aren't built
# by default.
2012-10-18 19:02:04 +05:30
AC_ARG_ENABLE([debug],
AS_HELP_STRING([--enable-debug],
[enable debugging (default is no)]),
[case "${enableval}" in
2012-10-18 19:12:37 +05:30
yes) debug_enabled=yes ;;
no) debug_enabled=no ;;
2012-10-18 19:02:04 +05:30
*) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) ;;
2012-10-18 19:12:37 +05:30
esac],[debug_enabled=no])
AM_CONDITIONAL([DEBUG_ENABLED], [test x$debug_enabled = xyes])
2012-10-23 09:25:20 +05:30
AM_COND_IF([DEBUG_ENABLED], [AC_DEFINE([ENABLE_DEBUG], [1], [Enable low-performing debugging facilities?])])
2012-10-18 19:02:04 +05:30
2011-01-07 11:59:03 -08:00
# Libtool configuration
#
2011-08-25 16:36:56 +02:00
# libtool cannot handle spaces in paths, so exit early if there is one
if [ test `echo $PWD | grep -c ' '` != "0" ]; then
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.])
fi
2011-01-07 11:59:03 -08:00
# On FreeBSD (and probably some others), clang++ does not meet an autoconf
# assumption in identifying libtool configuration regarding shared library:
2011-02-28 08:39:49 -08:00
# the configure script will execute "$CC -shared $CFLAGS/$CXXFLAGS -v" and
# expect the output contains -Lxxx or -Ryyy. This is the case for g++, but
# not for clang++, and, as a result, it will cause various errors in linking
# programs or running them with a shared object (such as some of our python
# scripts).
2011-01-07 11:59:03 -08:00
# To work around this problem we define a temporary variable
# "CXX_LIBTOOL_LDFLAGS". It's expected to be defined as, e.g, "-L/usr/lib"
# to temporarily fake the output so that it will be compatible with that of
# g++.
CFLAGS_SAVED=$CFLAGS
2011-02-28 08:39:49 -08:00
CXXFLAGS_SAVED=$CXXFLAGS
2011-01-07 11:59:03 -08:00
CFLAGS="$CFLAGS $CXX_LIBTOOL_LDFLAGS"
2011-02-28 08:39:49 -08:00
CXXFLAGS="$CXXFLAGS $CXX_LIBTOOL_LDFLAGS"
2010-01-26 22:15:42 +00:00
AC_PROG_LIBTOOL
2011-01-07 11:59:03 -08:00
CFLAGS=$CFLAGS_SAVED
2011-02-28 08:39:49 -08:00
CXXFLAGS=$CXXFLAGS_SAVED
2010-01-26 22:15:42 +00:00
2010-03-08 07:58:25 +00:00
# Use C++ language
2010-06-24 01:41:29 +00:00
AC_LANG([C++])
# Identify the compiler: this check must be after AC_PROG_CXX and AC_LANG.
2010-06-23 06:25:14 +00:00
AM_CONDITIONAL(USE_GXX, test "X${GXX}" = "Xyes")
2010-06-24 01:33:47 +00:00
AC_CHECK_DECL([__SUNPRO_CC], [SUNCXX="yes"], [SUNCXX="no"])
2010-10-10 03:27:23 +00:00
AC_CHECK_DECL([__clang__], [CLANGPP="yes"], [CLANGPP="no"])
AM_CONDITIONAL(USE_CLANGPP, test "X${CLANGPP}" = "Xyes")
2010-06-23 06:25:14 +00:00
2013-09-12 15:45:08 +02:00
dnl Determine if weare using GNU sed
GNU_SED=no
2014-01-21 11:58:56 -06:00
$SED --version 2> /dev/null | grep GNU > /dev/null 2>&1
2013-09-12 15:45:08 +02:00
if test $? -eq 0; then
GNU_SED=yes
fi
2010-07-07 18:42:45 +00:00
# Linker options
2012-10-31 15:57:26 -07:00
# check -R, "-Wl,-R" or -rpath (we share the AX function defined in
# examples/m4)
AX_ISC_RPATH
2010-07-07 18:42:45 +00:00
2012-10-07 23:53:26 -07:00
# Compiler dependent settings: define some mandatory CXXFLAGS here.
# We also use a separate variable B10_CXXFLAGS. This will (and should) be
# used as the default value for each specific AM_CXXFLAGS:
# AM_CXXFLAGS = $(B10_CXXFLAGS)
# AM_CXXFLAGS += ... # add module specific flags
# We need this so that we can disable some specific compiler warnings per
# module basis; since AM_CXXFLAGS are placed before CXXFLAGS, and since
# gcc's -Wno-XXX option must be specified after -Wall or -Wextra, we cannot
# specify the default warning flags in CXXFLAGS and let specific modules
# "override" the default.
# This may be used to try linker flags.
AC_DEFUN([BIND10_CXX_TRY_FLAG], [
AC_MSG_CHECKING([whether $CXX supports $1])
bind10_save_CXXFLAGS="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS $1"
AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void){ return 0;}])],
[bind10_cxx_flag=yes], [bind10_cxx_flag=no])
CXXFLAGS="$bind10_save_CXXFLAGS"
if test "x$bind10_cxx_flag" = "xyes"; then
ifelse([$2], , :, [$2])
else
ifelse([$3], , :, [$3])
fi
AC_MSG_RESULT([$bind10_cxx_flag])
])
2013-11-13 13:02:08 +05:30
CXX_VERSION="unknown"
2012-10-07 23:53:26 -07:00
# SunStudio compiler requires special compiler options for boost
# (http://blogs.sun.com/sga/entry/boost_mini_howto)
if test "$SUNCXX" = "yes"; then
2013-09-16 10:36:41 +02:00
CXX_VERSION=`$CXX -V 2> /dev/null | head -1`
2012-10-07 23:53:26 -07:00
CXXFLAGS="$CXXFLAGS -library=stlport4 -features=tmplife -features=tmplrefstatic"
MULTITHREADING_FLAG="-mt"
fi
# Newer versions of clang++ promotes "unused driver arguments" warnings to
# a fatal error with -Werror, causing build failure. Since we use multiple
# compilers on multiple systems, this can easily happen due to settings for
# non clang++ environments that could be just ignored otherwise. It can also
# happen if clang++ is used via ccache. So, although probably suboptimal,
# we suppress this particular warning. Note that it doesn't weaken checks
# on the source code.
if test "$CLANGPP" = "yes"; then
2013-09-12 15:45:08 +02:00
CXX_VERSION=`$CXX --version 2> /dev/null | head -1`
B10_CXXFLAGS="$B10_CXXFLAGS -Qunused-arguments"
2012-10-07 23:53:26 -07:00
fi
BIND10_CXX_TRY_FLAG([-Wno-missing-field-initializers],
[WARNING_NO_MISSING_FIELD_INITIALIZERS_CFLAG="-Wno-missing-field-initializers"])
AC_SUBST(WARNING_NO_MISSING_FIELD_INITIALIZERS_CFLAG)
# gcc specific settings:
if test "X$GXX" = "Xyes"; then
2013-09-12 15:45:08 +02:00
CXX_VERSION=`$CXX --version 2> /dev/null | head -1`
2013-07-25 02:10:17 +05:30
B10_CXXFLAGS="$B10_CXXFLAGS -Wall -Wextra -Wnon-virtual-dtor -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare"
2012-10-07 23:53:26 -07:00
case "$host" in
*-solaris*)
MULTITHREADING_FLAG=-pthreads
# In Solaris, IN6ADDR_ANY_INIT and IN6ADDR_LOOPBACK_INIT need -Wno-missing-braces
B10_CXXFLAGS="$B10_CXXFLAGS -Wno-missing-braces"
;;
*)
MULTITHREADING_FLAG=-pthread
;;
esac
# Don't use -Werror if configured not to
AC_ARG_WITH(werror,
AC_HELP_STRING([--with-werror], [Compile using -Werror (default=yes)]),
[
case "${withval}" in
yes) with_werror=1 ;;
no) with_werror=0 ;;
*) AC_MSG_ERROR(bad value ${withval} for --with-werror) ;;
esac],
[with_werror=1])
werror_ok=0
# Certain versions of gcc (g++) have a bug that incorrectly warns about
# the use of anonymous name spaces even if they're closed in a single
# translation unit. For these versions we have to disable -Werror.
if test $with_werror = 1; then
CXXFLAGS_SAVED="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS $B10_CXXFLAGS -Werror"
AC_MSG_CHECKING(for in-TU anonymous namespace breakage)
2013-02-21 13:05:20 -08:00
# We use struct, not class, here, because some compilers complain about
# "unused private members", causing a false positive.
AC_TRY_COMPILE([namespace { struct Foo {}; }
namespace isc {struct Bar {Foo foo_;};} ],,
2012-10-07 23:53:26 -07:00
[AC_MSG_RESULT(no)
werror_ok=1
B10_CXXFLAGS="$B10_CXXFLAGS -Werror"],
[AC_MSG_RESULT(yes)])
CXXFLAGS="$CXXFLAGS_SAVED"
fi
2012-10-10 11:02:24 -07:00
fi dnl GXX = yes
2010-08-13 23:22:54 +00:00
# allow building programs with static link. we need to make it selective
# because loadable modules cannot be statically linked.
AC_ARG_ENABLE([static-link],
AC_HELP_STRING([--enable-static-link],
[build programs with static link [[default=no]]]),
[enable_static_link=yes], [enable_static_link=no])
AM_CONDITIONAL(USE_STATIC_LINK, test $enable_static_link = yes)
2013-09-04 12:13:01 +01:00
AM_COND_IF([USE_STATIC_LINK], [AC_DEFINE([USE_STATIC_LINK], [1], [BIND 10 was statically linked?])])
2010-08-13 23:22:54 +00:00
2010-09-20 03:20:56 +00:00
# Check validity about some libtool options
if test $enable_static_link = yes -a $enable_static = no; then
AC_MSG_ERROR([--enable-static-link requires --enable-static])
fi
if test $enable_shared = no; then
AC_MSG_ERROR([BIND 10 requires shared libraries to be built])
fi
2010-09-28 11:01:19 +00:00
# allow configuring without setproctitle.
AC_ARG_ENABLE(setproctitle-check,
AC_HELP_STRING([--disable-setproctitle-check],
[do not check for python setproctitle module (used to give nice names to python processes)]),
setproctitle_check=$enableval, setproctitle_check=yes)
2010-08-18 20:51:43 +00:00
# OS dependent configuration
SET_ENV_LIBRARY_PATH=no
ENV_LIBRARY_PATH=LD_LIBRARY_PATH
2013-10-28 00:09:54 -07:00
bind10_undefined_pthread_behavior=no
2010-08-18 20:51:43 +00:00
2010-06-23 06:25:14 +00:00
case "$host" in
2010-06-24 01:00:15 +00:00
*-solaris*)
# Solaris requires special definitions to get some standard libraries
# (e.g. getopt(3)) available with common used header files.
CPPFLAGS="$CPPFLAGS -D_XPG4_2 -D__EXTENSIONS__"
2011-11-29 08:38:52 -05:00
# "now" binding is necessary to prevent deadlocks in C++ static initialization code
LDFLAGS="$LDFLAGS -z now"
2012-10-26 08:44:57 +05:30
# Destroying locked mutexes, condition variables being waited
# on, etc. are undefined behavior on Solaris, so we set it as
# such here.
2013-10-28 00:09:54 -07:00
bind10_undefined_pthread_behavior=yes
2010-06-24 01:00:15 +00:00
;;
2010-08-18 20:51:43 +00:00
*-apple-darwin*)
2012-02-21 09:22:15 -08:00
# Starting with OSX 10.7 (Lion) we must choose which IPv6 API to use
# (RFC2292 or RFC3542).
CPPFLAGS="$CPPFLAGS -D__APPLE_USE_RFC_3542"
2013-10-28 00:09:54 -07:00
# In OS X 10.9 (and possibly any future versions?) pthread_cond_destroy
# doesn't work as documented, which makes some of unit tests fail.
2013-11-15 01:00:46 -08:00
# Testing a specific system and version is not a good practice, but
# identifying this behavior would be too heavy (running a program
# with multiple threads), so this is a compromise. In general,
# it should be avoided to rely on 'osx_version' unless there's no
# viable alternative.
2013-10-28 00:09:54 -07:00
osx_version=`/usr/bin/sw_vers -productVersion`
2014-03-28 07:17:51 -04:00
if [ test $osx_version = "10.9" \
-o $osx_version = "10.9.1" \
-o $osx_version = "10.9.2" ]; then
2013-10-28 00:09:54 -07:00
bind10_undefined_pthread_behavior=yes
fi
2011-01-19 08:13:54 -06:00
# libtool doesn't work perfectly with Darwin: libtool embeds the
2010-08-18 20:51:43 +00:00
# final install path in dynamic libraries and our loadable python
# modules always refer to that path even if it's loaded within the
# source tree. This prevents pre-install tests from working.
# To work around this problem we explicitly specify paths to dynamic
# libraries when we use them in the source tree.
SET_ENV_LIBRARY_PATH=yes
ENV_LIBRARY_PATH=DYLD_LIBRARY_PATH
;;
2011-11-11 15:56:54 +01:00
*-freebsd*)
SET_ENV_LIBRARY_PATH=yes
;;
2011-11-14 16:12:30 +01:00
*-netbsd*)
SET_ENV_LIBRARY_PATH=yes
;;
2012-03-22 15:56:23 +05:30
*-openbsd*)
SET_ENV_LIBRARY_PATH=yes
;;
2010-06-23 06:25:14 +00:00
esac
2010-08-18 20:51:43 +00:00
AM_CONDITIONAL(SET_ENV_LIBRARY_PATH, test $SET_ENV_LIBRARY_PATH = yes)
AC_SUBST(SET_ENV_LIBRARY_PATH)
AC_SUBST(ENV_LIBRARY_PATH)
2013-10-28 00:09:54 -07:00
if [ test $bind10_undefined_pthread_behavior = "yes" ]; then
AC_DEFINE([HAS_UNDEFINED_PTHREAD_BEHAVIOR], [1], [Does this platform have some undefined pthreads behavior?])
fi
2010-03-08 07:58:25 +00:00
2013-02-01 14:43:54 -08:00
# Our experiments have shown Solaris 10 has broken support for the
# IPV6_USE_MIN_MTU socket option for getsockopt(); it doesn't return the value
# previously set via setsockopt(). We know it doesn't happen on one instance
# on Solaris 11, but we don't know whether it happens for any Solaris 10
# implementations or for earlier versions of Solaris. In any case, at the
# moment this matters for only one unittest case, so we'll simply disable
# the affected test using the following definition with the specific hardcoding
# of that version of Solaris.
case "$host" in
*-solaris2.10)
AC_DEFINE([HAVE_BROKEN_GET_IPV6_USE_MIN_MTU], [1],
[Define to 1 if getsockopt(IPV6_USE_MIN_MTU) does not work])
;;
esac
2014-05-10 07:32:21 -07:00
m4_define([_AM_PYTHON_INTERPRETER_LIST], [python python3.4 python3.3 python3.2 python3.1 python3])
2010-03-14 20:45:07 +00:00
AC_ARG_WITH([pythonpath],
AC_HELP_STRING([--with-pythonpath=PATH],
2010-03-17 23:40:59 +00:00
[specify an absolute path to python executable when automatic version check (incorrectly) fails]),
2010-03-14 20:45:07 +00:00
[python_path="$withval"], [python_path="auto"])
if test "$python_path" = auto; then
AM_PATH_PYTHON([3.1])
else
2010-03-21 02:36:03 +00:00
# Older versions of automake can't handle python3 well. This is an
# in-house workaround for them.
2010-03-14 20:45:07 +00:00
PYTHON=$python_path
AC_SUBST(PYTHON)
2010-03-17 23:16:56 +00:00
PYTHON_PREFIX='${prefix}'
AC_SUBST(PYTHON_PREFIX)
PYTHON_EXEC_PREFIX='$(exec_prefix)'
AC_SUBST(PYTHON_EXEC_PREFIX)
2010-03-21 02:36:03 +00:00
PYTHON_VERSION=[`$PYTHON -c "import sys; sys.stdout.write(sys.version[:3])"`]
if test `echo "$PYTHON_VERSION >= 3.1" | bc` != 1 ; then
AC_MSG_ERROR(["Python version too old: $PYTHON_VERSION, need 3.1 or higher"])
fi
2010-03-17 23:40:59 +00:00
AC_SUBST(PYTHON_VERSION)
PYTHON_PLATFORM=`$PYTHON -c "import sys; print(sys.platform)"`
2010-03-17 23:16:56 +00:00
AC_SUBST(PYTHON_PLATFORM)
2010-03-21 02:36:03 +00:00
pythondir='${prefix}/lib/python'$PYTHON_VERSION'/site-packages'
2010-03-17 23:16:56 +00:00
AC_SUBST(pythondir)
2010-03-19 02:15:46 +00:00
pkgpythondir='${pythondir}/'$PACKAGE
2010-03-17 23:16:56 +00:00
AC_SUBST(pkgpythondir)
2010-03-21 02:36:03 +00:00
pyexecdir='${exec_prefix}/lib/python'$PYTHON_VERSION'/site-packages'
2010-03-17 23:16:56 +00:00
AC_SUBST(pyexecdir)
2010-03-19 02:15:46 +00:00
pkgpyexecdir='${pyexecdir}/'$PACKAGE
2010-03-17 23:16:56 +00:00
AC_SUBST(pkgpyexecdir)
2010-03-14 20:45:07 +00:00
fi
2009-12-03 08:21:01 +00:00
2011-07-07 15:00:33 -07:00
# We need to store the default pyexecdir in a separate variable so that
# we can specify in Makefile.am the install directory of various BIND 10
# python scripts and loadable modules; in Makefile.am we cannot replace
# $(pyexecdir) using itself, e.g, this doesn't work:
# pyexecdir = $(pyexecdir)/isc/some_module
# The separate variable makes this setup possible as follows:
# pyexecdir = $(PYTHON_SITEPKG_DIR)/isc/some_module
PYTHON_SITEPKG_DIR=${pyexecdir}
AC_SUBST(PYTHON_SITEPKG_DIR)
2011-09-22 09:51:11 -07:00
# This will be commonly used in various Makefile.am's that need to generate
2011-09-09 15:57:43 -07:00
# python log messages.
PYTHON_LOGMSGPKG_DIR="\$(top_builddir)/src/lib/python/isc/log_messages"
AC_SUBST(PYTHON_LOGMSGPKG_DIR)
# This is python package paths commonly used in python tests. See
# README of log_messages for why it's included.
2013-01-17 12:06:44 -08:00
# lib/dns/python/.libs is necessary because __init__.py of isc package
# automatically imports isc.datasrc, which then requires the DNS loadable
# module. #2145 should eliminate the need for it.
2013-02-12 12:58:46 +01:00
COMMON_PYTHON_PATH="\$(abs_top_builddir)/src/lib/python/isc/log_messages:\$(abs_top_builddir)/src/lib/python/isc/cc:\$(abs_top_srcdir)/src/lib/python:\$(abs_top_builddir)/src/lib/python:\$(abs_top_builddir)/src/lib/dns/python/.libs"
2011-09-09 15:57:43 -07:00
AC_SUBST(COMMON_PYTHON_PATH)
2010-04-22 23:00:03 +00:00
# Check for python development environments
if test -x ${PYTHON}-config; then
PYTHON_INCLUDES=`${PYTHON}-config --includes`
2010-04-15 10:43:48 +00:00
2013-02-08 08:21:01 -08:00
# Add any '-L..." flags to PYTHON_LDFLAGS. We first make a copy of
# python-config --ldflags, removing any spaces and tabs
2013-02-05 13:49:10 -08:00
# between "-L" and its argument (some instances of python-config
2013-02-08 08:21:01 -08:00
# insert a space, which would confuse the code below).
# Notes: if -L isn't contained at all we can simply skip this process,
# so we only go through the flag if it's contained; also, protecting
# the output with [] seems necessary for environment to avoid getting
# an empty output accidentally.
2013-03-19 12:39:37 +01:00
python_config_ldflags=[`${PYTHON}-config --ldflags | ${SED} -ne 's/\([ \t]*-L\)[ ]*\([^ \t]*[ \t]*\)/\1\2/gp'`]
2013-02-05 13:49:10 -08:00
for flag in $python_config_ldflags; do
2013-03-19 12:39:37 +01:00
flag=`echo $flag | ${SED} -ne 's/^\(\-L.*\)$/\1/p'`
2010-04-22 23:00:03 +00:00
if test "X${flag}" != X; then
PYTHON_LDFLAGS="$PYTHON_LDFLAGS ${flag}"
fi
done
# on some platforms, ${PYTHON}-config --ldflags doesn't provide a -L
# option while having the library under a non trivial directory.
# as a workaround we try the "lib" sub directory under the common
# prefix for this python.
if test -z "${PYTHON_LDFLAGS}"; then
PYTHON_LDFLAGS="-L`${PYTHON}-config --prefix`/lib"
fi
else
if test "X$PYTHON_INCLUDES" = X -o "X$PYTHON_LDFLAGS" = X; then
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.])
2010-04-19 18:16:43 +00:00
fi
fi
2010-07-06 23:53:12 +00:00
2010-07-07 18:42:45 +00:00
# Some OSes including NetBSD don't install libpython.so in a well known path.
# To avoid requiring dynamic library path with our python wrapper loadable
# modules, we embed the path to the modules when possible. We do this even
# when the path is known in the common operational environment (e.g. when
2010-07-07 19:47:53 +00:00
# it's stored in a common "hint" file) for simplicity.
2012-10-31 15:57:26 -07:00
if test "x$ISC_RPATH_FLAG" != "x"; then
2010-07-06 23:53:12 +00:00
python_rpath=
for flag in ${PYTHON_LDFLAGS}; do
2013-03-19 12:39:37 +01:00
python_rpath="${python_rpath} `echo $flag | ${SED} -ne "s/^\(\-L\)/${ISC_RPATH_FLAG}/p"`"
2010-07-06 23:53:12 +00:00
done
PYTHON_LDFLAGS="${PYTHON_LDFLAGS} ${python_rpath}"
fi
2010-03-20 22:50:15 +00:00
AC_SUBST(PYTHON_INCLUDES)
AC_SUBST(PYTHON_LDFLAGS)
2010-04-15 10:43:48 +00:00
CPPFLAGS_SAVED="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS ${PYTHON_INCLUDES}"
AC_CHECK_HEADERS([Python.h],, AC_MSG_ERROR([Missing Python.h]))
CPPFLAGS="$CPPFLAGS_SAVED"
2010-07-02 01:28:20 +00:00
# Check for python library. Needed for Python-wrapper libraries.
2010-03-20 22:50:15 +00:00
LDFLAGS_SAVED="$LDFLAGS"
LDFLAGS="$LDFLAGS $PYTHON_LDFLAGS"
python_bin="python${PYTHON_VERSION}"
AC_CHECK_LIB($python_bin, main, python_lib=$python_bin, python_lib=no)
if test $python_lib != "no"; then
PYTHON_LIB="-l$python_lib"
fi
AC_SUBST(PYTHON_LIB)
2010-07-06 23:53:12 +00:00
LDFLAGS=$LDFLAGS_SAVED
2010-03-20 22:50:15 +00:00
2014-01-10 10:38:41 +05:30
# Python 3.2 changed the return type of internal hash function to
# Py_hash_t and some platforms (such as Solaris) strictly check for long
# vs Py_hash_t. So we detect and use the appropriate return type.
# Remove this test (and associated changes in pydnspp_config.h.in) when
# we require Python 3.2.
have_py_hash_t=0
CPPFLAGS_SAVED="$CPPFLAGS"
CPPFLAGS=${PYTHON_INCLUDES}
AC_MSG_CHECKING(for Py_hash_t)
AC_TRY_COMPILE([#include <Python.h>
Py_hash_t h;],,
[AC_MSG_RESULT(yes)
have_py_hash_t=1],
[AC_MSG_RESULT(no)])
CPPFLAGS="$CPPFLAGS_SAVED"
HAVE_PY_HASH_T=$have_py_hash_t
AC_SUBST(HAVE_PY_HASH_T)
2010-09-28 11:01:19 +00:00
# Check for the setproctitle module
if test "$setproctitle_check" = "yes" ; then
AC_MSG_CHECKING(for setproctitle module)
if "$PYTHON" -c 'import setproctitle' 2>/dev/null ; then
AC_MSG_RESULT(ok)
else
AC_MSG_RESULT(missing)
2011-02-24 09:56:35 -06:00
AC_MSG_WARN([Missing setproctitle python module.
Use --disable-setproctitle-check to skip this check.
In this case we will continue, but naming of python processes will not work.])
2010-09-28 11:01:19 +00:00
fi
fi
2012-10-10 11:02:24 -07:00
# (g++ only check)
2011-06-16 16:17:28 -07:00
# Python 3.2 has an unused parameter in one of its headers. This
# has been reported, but not fixed as of yet, so we check if we need
# to set -Wno-unused-parameter.
2014-01-21 11:58:56 -06:00
if test "X$GXX" = "Xyes" -a "$werror_ok" = 1; then
2011-06-16 16:17:28 -07:00
CPPFLAGS_SAVED="$CPPFLAGS"
CPPFLAGS=${PYTHON_INCLUDES}
CXXFLAGS_SAVED="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS $B10_CXXFLAGS -Werror"
AC_MSG_CHECKING([whether we need -Wno-unused-parameter for python])
AC_TRY_COMPILE(
[#include <Python.h>],
[],
[AC_MSG_RESULT(no)],
[
CXXFLAGS="$CXXFLAGS -Wno-unused-parameter"
AC_TRY_COMPILE([#include <Python.h>],
[],
[AC_MSG_RESULT(yes)
PYTHON_CXXFLAGS="${PYTHON_CXXFLAGS} -Wno-unused-parameter"
AC_SUBST(PYTHON_CXXFLAGS)
],
2014-04-15 10:23:10 +02:00
[AC_MSG_ERROR([Can't compile against Python.h. If you're using MacOS X and have installed Python with Homebrew, see http://kea.isc.org/wiki/SystemNotesMacOSX])]
2011-06-16 16:17:28 -07:00
)
]
)
CXXFLAGS="$CXXFLAGS_SAVED"
CPPFLAGS="$CPPFLAGS_SAVED"
fi
2010-01-26 22:15:42 +00:00
# produce PIC unless we disable shared libraries. need this for python bindings.
2010-06-23 06:25:14 +00:00
if test $enable_shared != "no" -a "X$GXX" = "Xyes"; then
2010-05-28 00:42:50 +00:00
B10_CXXFLAGS="$B10_CXXFLAGS -fPIC"
2010-01-26 22:15:42 +00:00
fi
2010-05-28 00:42:50 +00:00
AC_SUBST(B10_CXXFLAGS)
2009-10-16 06:20:23 +00:00
# Checks for libraries.
2010-02-10 19:11:57 +00:00
AC_SEARCH_LIBS(inet_pton, [nsl])
AC_SEARCH_LIBS(recvfrom, [socket])
2011-03-01 04:21:47 +00:00
AC_SEARCH_LIBS(nanosleep, [rt])
2013-07-09 14:11:30 +01:00
AC_SEARCH_LIBS(dlsym, [dl])
2010-02-10 19:11:57 +00:00
2009-10-16 06:20:23 +00:00
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_TYPE_SIZE_T
2010-05-31 19:29:15 +00:00
2011-11-30 17:00:42 +01:00
# Detect OS type (it may be used to do OS-specific things, e.g.
# interface detection in DHCP)
AC_MSG_CHECKING(OS family)
system=`uname -s`
case $system in
Linux)
2011-12-16 18:45:13 +01:00
OS_TYPE="Linux"
2011-11-30 17:00:42 +01:00
CPPFLAGS="$CPPFLAGS -DOS_LINUX"
;;
Darwin | FreeBSD | NetBSD | OpenBSD)
OS_TYPE="BSD"
CPPFLAGS="$CPPFLAGS -DOS_BSD"
;;
2012-05-10 18:48:50 +02:00
SunOS)
2011-11-30 17:00:42 +01:00
OS_TYPE="Solaris"
2012-05-10 18:48:50 +02:00
CPPFLAGS="$CPPFLAGS -DOS_SUN"
2011-11-30 17:00:42 +01:00
;;
*)
OS_TYPE="Unknown"
AC_MSG_WARN("Unsupported OS: uname returned $system")
;;
esac
AC_MSG_RESULT($OS_TYPE)
2011-12-16 18:45:13 +01:00
AM_CONDITIONAL(OS_LINUX, test $OS_TYPE = Linux)
AM_COND_IF([OS_LINUX], [AC_DEFINE([OS_LINUX], [1], [Running on Linux?])])
2011-11-30 17:00:42 +01:00
AM_CONDITIONAL(OS_BSD, test $OS_TYPE = BSD)
2011-12-16 18:45:13 +01:00
AM_COND_IF([OS_BSD], [AC_DEFINE([OS_BSD], [1], [Running on BSD?])])
2011-11-30 17:00:42 +01:00
AM_CONDITIONAL(OS_SOLARIS, test $OS_TYPE = Solaris)
2011-12-16 18:45:13 +01:00
AM_COND_IF([OS_SOLARIS], [AC_DEFINE([OS_SOLARIS], [1], [Running on Solaris?])])
2010-05-31 19:29:15 +00:00
2013-07-10 00:43:01 +01:00
# Deal with variants
AM_CONDITIONAL(OS_FREEBSD, test $system = FreeBSD)
AM_COND_IF([OS_FREEBSD], [AC_DEFINE([OS_FREEBSD], [1], [Running on FreeBSD?])])
AM_CONDITIONAL(OS_NETBSD, test $system = NetBSD)
AM_COND_IF([OS_NETBSD], [AC_DEFINE([OS_NETBSD], [1], [Running on NetBSD?])])
AM_CONDITIONAL(OS_OPENBSD, test $system = OpenBSD)
AM_COND_IF([OS_OPENBSD], [AC_DEFINE([OS_OPENBSD], [1], [Running on OpenBSD?])])
AM_CONDITIONAL(OS_OSX, test $system = Darwin)
AM_COND_IF([OS_OSX], [AC_DEFINE([OS_OSX], [1], [Running on OSX?])])
2009-10-30 17:47:35 +00:00
AC_MSG_CHECKING(for sa_len in struct sockaddr)
AC_TRY_COMPILE([
#include <sys/types.h>
#include <sys/socket.h>],
[struct sockaddr sa; sa.sa_len = 0; return (0);],
[AC_MSG_RESULT(yes)
2010-05-31 19:29:15 +00:00
AC_DEFINE(HAVE_SA_LEN, 1, [Define to 1 if sockaddr has a sa_len member, and corresponding sin_len and sun_len])],
2009-10-30 17:47:35 +00:00
AC_MSG_RESULT(no))
2010-10-07 17:30:20 +00:00
AC_ARG_WITH(pycoverage,
[ --with-pycoverage[=PROGRAM] enable python code coverage using the specified coverage], pycoverage="$withval", pycoverage="no")
2010-11-12 12:18:39 +00:00
if test "$pycoverage" = "no" ; then
# just run the tests normally with python
PYCOVERAGE_RUN="${PYTHON}"
USE_PYCOVERAGE="no"
elif test "$pycoverage" = "yes" ; then
PYCOVERAGE="coverage"
PYCOVERAGE_RUN="${PYCOVERAGE} run --branch --append"
USE_PYCOVERAGE="yes"
2010-10-07 17:30:20 +00:00
else
2010-11-12 12:18:39 +00:00
PYCOVERAGE="$pycoverage"
PYCOVERAGE_RUN="${PYCOVERAGE} run --branch --append"
USE_PYCOVERAGE="yes"
2010-10-07 17:30:20 +00:00
fi
2010-11-12 12:18:39 +00:00
AM_CONDITIONAL(ENABLE_PYTHON_COVERAGE, test x$USE_PYCOVERAGE != xno)
2010-10-07 17:30:20 +00:00
AC_SUBST(PYCOVERAGE)
2010-11-23 13:58:50 +00:00
AC_SUBST(PYCOVERAGE_RUN)
2010-11-12 12:18:39 +00:00
AC_SUBST(USE_PYCOVERAGE)
2010-10-07 17:30:20 +00:00
2012-07-05 21:48:16 -05:00
enable_gtest="no"
2012-07-06 16:03:09 -05:00
GTEST_INCLUDES=
2012-07-05 21:48:16 -05:00
AC_ARG_WITH([gtest-source],
[AS_HELP_STRING([--with-gtest-source=PATH],
[location of the Googletest source, defaults to /usr/src/gtest])],
2012-07-06 18:46:20 -05:00
[enable_gtest="yes" ; GTEST_SOURCE="$withval"],
2012-07-05 21:48:16 -05:00
[GTEST_SOURCE="/usr/src/gtest"])
AC_ARG_WITH([gtest],
[AS_HELP_STRING([--with-gtest=PATH],
[specify a path to gtest header files (PATH/include) and library (PATH/lib)])],
[gtest_path="$withval"; enable_gtest="yes"], [gtest_path="no"])
2009-12-29 16:07:20 +00:00
AC_ARG_WITH(lcov,
2009-12-31 18:13:15 +00:00
[ --with-lcov[=PROGRAM] enable gtest and coverage target using the specified lcov], lcov="$withval", lcov="no")
2009-12-29 16:07:20 +00:00
USE_LCOV="no"
if test "$lcov" != "no"; then
# force gtest if not set
2012-07-05 21:48:16 -05:00
if test "$enable_gtest" = "no"; then
2010-01-26 19:41:22 +00:00
# AC_MSG_ERROR("lcov needs gtest for test coverage report")
AC_MSG_NOTICE([gtest support is now enabled, because used by coverage tests])
2012-07-05 21:48:16 -05:00
enable_gtest="yes"
2009-12-29 16:07:20 +00:00
fi
if test "$lcov" != "yes"; then
2010-01-26 19:41:22 +00:00
LCOV=$lcov
2009-12-29 16:07:20 +00:00
else
2010-01-26 19:41:22 +00:00
AC_PATH_PROG([LCOV], [lcov])
2009-12-29 16:07:20 +00:00
fi
2010-01-26 19:41:22 +00:00
if test -x "${LCOV}"; then
USE_LCOV="yes"
else
AC_MSG_ERROR([Cannot find lcov.])
2009-12-29 16:07:20 +00:00
fi
# is genhtml always in the same directory?
2013-03-19 12:39:37 +01:00
GENHTML=`echo "$LCOV" | ${SED} s/lcov$/genhtml/`
2009-12-29 16:07:20 +00:00
if test ! -x $GENHTML; then
AC_MSG_ERROR([genhtml not found, needed for lcov])
fi
2009-12-31 18:13:15 +00:00
# GCC specific?
2010-01-26 19:41:22 +00:00
CXXFLAGS="$CXXFLAGS -fprofile-arcs -ftest-coverage"
2009-12-31 18:13:15 +00:00
LIBS=" $LIBS -lgcov"
2009-12-29 16:07:20 +00:00
AC_SUBST(CPPFLAGS)
AC_SUBST(LIBS)
AC_SUBST(LCOV)
AC_SUBST(GENHTML)
fi
AC_SUBST(USE_LCOV)
2012-03-12 19:32:42 +01:00
# Simplified, non-caching AC_CHECK_PROG
# Searches $PATH for the existence of argument 2,
# and sets the full path to the variable in argument 1.
# if not found, and a third argument is given, the value
2012-03-15 11:24:07 +01:00
# is set to that. If not, the value is untouched.
# Does not take absolute paths into account at this point,
2012-03-12 19:32:42 +01:00
# and also works for single files only (arguments are not
# stripped like in AC_CHECK_PROG)
AC_DEFUN([ACX_CHECK_PROG_NONCACHE], [
RESULT=""
IFS_SAVED="$IFS"
2012-03-15 11:24:07 +01:00
IFS=${PATH_SEPARATOR}
2012-03-12 19:32:42 +01:00
for cur_path in ${PATH} ; do
if test -e "${cur_path}/$2" ; then
RESULT="${cur_path}/$2"
fi
done
if test "$RESULT" = "" ; then
2012-03-15 11:24:07 +01:00
:
2012-03-12 19:32:42 +01:00
m4_ifvaln([$3], [$1=$3])
else
$1=$RESULT
fi
IFS="$IFS_SAVED"
])
# Botan helper test function
2012-03-15 11:24:07 +01:00
# Tries to compile a botan program, given the output of the given
# config tool
2012-03-12 19:32:42 +01:00
# Arguments:
# - name of tool (checked for path), must support --libs and --cflags
# - fixed argument(s) for tool
# - action if successful
AC_DEFUN([ACX_TRY_BOTAN_TOOL], [
TOOL=$1
TOOL_ARG=$2
BOTAN_TOOL=""
2012-03-15 11:24:07 +01:00
ACX_CHECK_PROG_NONCACHE([BOTAN_TOOL], [${TOOL}])
AC_MSG_CHECKING([usability of ${TOOL} ${TOOL_ARG}])
2012-03-12 19:32:42 +01:00
if test "$BOTAN_TOOL" != "" ; then
if test -x ${BOTAN_TOOL}; then
BOTAN_LIBS=`$BOTAN_TOOL $TOOL_ARG --libs`
LIBS_SAVED=${LIBS}
LIBS="$LIBS $BOTAN_LIBS"
BOTAN_INCLUDES=`$BOTAN_TOOL $TOOL_ARG --cflags`
CPPFLAGS_SAVED=${CPPFLAGS}
CPPFLAGS="$BOTAN_INCLUDES $CPPFLAGS"
#AC_MSG_RESULT([found])
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([#include <botan/botan.h>
#include <botan/hash.h>
],
[using namespace Botan;
LibraryInitializer::initialize();
HashFunction *h = get_hash("MD5");
])],
[ AC_MSG_RESULT([ok])
$3
],
2012-03-15 11:24:07 +01:00
[ AC_MSG_RESULT([not usable]) ]
2012-03-12 19:32:42 +01:00
)
LIBS=${LIBS_SAVED}
CPPFLAGS=${CPPFLAGS_SAVED}
else
AC_MSG_RESULT([not executable])
fi
else
AC_MSG_RESULT([not found])
fi
BOTAN_TOOL=""
AC_SUBST(BOTAN_TOOL)
]
)
2011-04-08 15:49:22 +02:00
# Check for Botan
2012-03-15 11:24:07 +01:00
#
# Unless --with-botan-config is given, we first try to find these config
# scripts ourselves. Unfortunately, on some systems, these scripts do not
# provide the correct implementation, so for each script found, we try
# a compilation test (ACX_TRY_BOTAN_TOOL). If none are found, or none of
# them work, we see if pkg-config is available. If so, we try the several
# potential pkg-config .pc files. Again, on some systems, these can return
# incorrect information as well, so the try-compile test is repeated for
# each.
#
# If a working config script or pkgconfig file is found, we then munge its
# output for use in our Makefiles, and to make sure it works, another header
# and compilation test is done (this should also check whether we can compile
# against botan should neither -config scripts nor pkgconfig data exist).
#
2012-03-05 15:49:03 +01:00
botan_config="yes"
AC_ARG_WITH([botan-config],
AC_HELP_STRING([--with-botan-config=PATH],
[specify the path to the botan-config script]),
[botan_config="$withval"])
if test "${botan_config}" = "no" ; then
2011-04-28 21:34:55 +00:00
AC_MSG_ERROR([Need botan for libcryptolink])
2011-04-08 15:49:22 +02:00
fi
2012-03-05 15:49:03 +01:00
if test "${botan_config}" != "yes" ; then
if test -x "${botan_config}" ; then
if test -d "${botan_config}" ; then
AC_MSG_ERROR([${botan_config} is a directory])
else
BOTAN_CONFIG="${botan_config}"
fi
2011-04-28 21:34:55 +00:00
else
2012-03-15 11:24:07 +01:00
AC_MSG_ERROR([--with-botan-config should point to a botan-config program and not a directory (${botan_config})])
2011-04-28 21:34:55 +00:00
fi
else
2011-10-27 17:55:06 +02:00
BOTAN_CONFIG=""
2012-03-09 21:59:59 +01:00
# first try several possible names of the config script
2012-03-15 11:24:07 +01:00
# (botan-config-1.8 is there just in case, the official name change
# came later)
2012-03-09 21:59:59 +01:00
BOTAN_CONFIG_VERSIONS="botan-config-1.10 botan-config-1.9 botan-config-1.8 botan-config"
for botan_config in $BOTAN_CONFIG_VERSIONS; do
2012-03-12 19:32:42 +01:00
ACX_TRY_BOTAN_TOOL([$botan_config],,
2012-03-15 11:24:07 +01:00
[ BOTAN_CONFIG="$botan_config" ]
2012-03-12 19:32:42 +01:00
)
if test "$BOTAN_CONFIG" != "" ; then
2012-03-09 21:59:59 +01:00
break
fi
done
2011-10-27 17:55:06 +02:00
if test "$BOTAN_CONFIG" = "" ; then
2012-03-09 21:59:59 +01:00
AC_PATH_PROG([PKG_CONFIG], [pkg-config])
if test "$PKG_CONFIG" != "" ; then
# Ok so no script found, see if pkg-config knows of it.
# Unfortunately, the botan.pc files also have their minor version
# in their name, so we need to try them one by one
BOTAN_VERSIONS="botan-1.10 botan-1.9 botan-1.8"
for version in $BOTAN_VERSIONS; do
2012-03-12 19:32:42 +01:00
ACX_TRY_BOTAN_TOOL([pkg-config], ["$version --silence-errors"],
2012-03-15 11:24:07 +01:00
[ BOTAN_CONFIG="$PKG_CONFIG $version" ]
2012-03-12 19:32:42 +01:00
)
if test "$BOTAN_CONFIG" != "" ; then
2011-10-27 17:55:06 +02:00
break
fi
2012-03-09 21:59:59 +01:00
done
fi
2011-10-27 17:55:06 +02:00
fi
2011-04-28 21:34:55 +00:00
fi
2012-03-12 19:32:42 +01:00
2012-02-16 11:48:39 +01:00
if test "x${BOTAN_CONFIG}" != "x"
then
BOTAN_LIBS=`${BOTAN_CONFIG} --libs`
BOTAN_INCLUDES=`${BOTAN_CONFIG} --cflags`
# We expect botan-config --libs to contain -L<path_to_libbotan>, but
# this is not always the case. As a heuristics workaround we add
# -L`botan-config --prefix/lib` in this case (if not present already).
# Same for BOTAN_INCLUDES (but using include instead of lib) below.
if [ ${BOTAN_CONFIG} --prefix >/dev/null 2>&1 ] ; then
echo ${BOTAN_LIBS} | grep -- -L > /dev/null || \
BOTAN_LIBS="-L`${BOTAN_CONFIG} --prefix`/lib ${BOTAN_LIBS}"
echo ${BOTAN_INCLUDES} | grep -- -I > /dev/null || \
BOTAN_INCLUDES="-I`${BOTAN_CONFIG} --prefix`/include ${BOTAN_INCLUDES}"
fi
2011-04-08 15:49:22 +02:00
fi
2013-09-12 15:45:08 +02:00
dnl Determine the Botan version
AC_MSG_CHECKING([Botan version])
cat > conftest.cpp << EOF
#include <botan/version.h>
AUTOCONF_BOTAN_VERSION=BOTAN_VERSION_MAJOR . BOTAN_VERSION_MINOR . BOTAN_VERSION_PATCH
EOF
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`
if test -z "$BOTAN_VERSION"; then
BOTAN_VERSION="unknown"
fi
$RM -f conftest.cpp
AC_MSG_RESULT([$BOTAN_VERSION])
2011-12-01 11:07:10 +01:00
# botan-config script (and the way we call pkg-config) returns -L and -l
# as one string, but we need them in separate values
BOTAN_LDFLAGS=
BOTAN_NEWLIBS=
for flag in ${BOTAN_LIBS}; do
2013-03-19 12:39:37 +01:00
BOTAN_LDFLAGS="${BOTAN_LDFLAGS} `echo $flag | ${SED} -ne '/^\(\-L\)/p'`"
BOTAN_LIBS="${BOTAN_LIBS} `echo $flag | ${SED} -ne '/^\(\-l\)/p'`"
2011-12-01 11:07:10 +01:00
done
2011-10-27 17:55:06 +02:00
# See python_rpath for some info on why we do this
2012-10-31 15:57:26 -07:00
if test "x$ISC_RPATH_FLAG" != "x"; then
2011-10-27 17:55:06 +02:00
BOTAN_RPATH=
2011-11-30 16:08:29 +01:00
for flag in ${BOTAN_LIBS}; do
2013-03-19 12:39:37 +01:00
BOTAN_RPATH="${BOTAN_RPATH} `echo $flag | ${SED} -ne "s/^\(\-L\)/${ISC_RPATH_FLAG}/p"`"
2011-10-27 17:55:06 +02:00
done
AC_SUBST(BOTAN_RPATH)
# According to the libtool manual, it should be sufficient if we
# specify the "-R libdir" in our wrapper library of botan (no other
# programs will need libbotan directly); "libdir" should be added to
# the program's binary image. But we've seen in our build environments
# that (some versions of?) libtool doesn't propagate -R as documented,
# and it caused a linker error at run time. To work around this, we
# also add the rpath to the global LDFLAGS.
LDFLAGS="$BOTAN_RPATH $LDFLAGS"
fi
AC_SUBST(BOTAN_LDFLAGS)
2011-11-30 16:08:29 +01:00
AC_SUBST(BOTAN_LIBS)
2011-10-27 17:55:06 +02:00
AC_SUBST(BOTAN_INCLUDES)
2012-03-12 19:32:42 +01:00
# Even though chances are high we already performed a real compilation check
# in the search for the right (pkg)config data, we try again here, to
# be sure.
2011-04-28 19:22:20 +00:00
CPPFLAGS_SAVED=$CPPFLAGS
CPPFLAGS="$BOTAN_INCLUDES $CPPFLAGS"
2011-11-30 14:53:58 +01:00
LIBS_SAVED="$LIBS"
2011-11-30 16:08:29 +01:00
LIBS="$LIBS $BOTAN_LIBS"
2013-11-07 08:38:42 +02:00
2013-11-14 10:02:35 +02:00
# ac_header_preproc is an autoconf symbol (undocumented but stable) that
# is set if the pre-processor phase passes. Thus by adding a custom
# failure handler we can detect the difference between a header not existing
# (or not even passing the pre-processor phase) and a header file resulting
# in compilation failures.
2013-09-17 13:56:12 +02:00
AC_CHECK_HEADERS([botan/botan.h],,[
2013-11-14 10:02:35 +02:00
if test "x$ac_header_preproc" = "xyes"; then
AC_MSG_ERROR([
2013-09-17 13:56:12 +02:00
botan/botan.h was found but is unusable. The most common cause of this problem
is attempting to use an updated C++ compiler with older C++ libraries, such as
the version of Botan that comes with your distribution. If you have updated
your C++ compiler we highly recommend that you use support libraries such as
Boost and Botan that were compiled with the same compiler version.])
2013-11-14 10:02:35 +02:00
else
AC_MSG_ERROR([Missing required header files.])
fi]
)
2011-04-08 15:49:22 +02:00
AC_LINK_IFELSE(
2011-04-28 13:04:44 +00:00
[AC_LANG_PROGRAM([#include <botan/botan.h>
#include <botan/hash.h>
],
2011-04-08 15:49:22 +02:00
[using namespace Botan;
LibraryInitializer::initialize();
2011-04-28 13:04:44 +00:00
HashFunction *h = get_hash("MD5");
2011-04-08 15:49:22 +02:00
])],
[AC_MSG_RESULT([checking for Botan library... yes])],
[AC_MSG_RESULT([checking for Botan library... no])
2012-03-05 15:49:03 +01:00
AC_MSG_ERROR([Needs Botan library 1.8 or higher. On some systems,
the botan package has a few missing dependencies (libbz2 and
libgmp), if libbotan has been installed and you see this error,
try upgrading to a higher version of botan or installing libbz2
and libgmp.])]
2011-04-08 15:49:22 +02:00
)
2011-04-28 19:22:20 +00:00
CPPFLAGS=$CPPFLAGS_SAVED
2011-11-30 14:53:58 +01:00
LIBS=$LIBS_SAVED
2012-10-22 20:05:35 +01:00
# Check for MySql. The path to the mysql_config program is given with
2012-10-22 21:28:41 +01:00
# the --with-mysql-config (default to /usr/bin/mysql-config). By default,
# the software is not built with MySQL support enabled.
2012-10-22 20:05:35 +01:00
mysql_config="no"
2012-10-24 14:12:06 +01:00
AC_ARG_WITH([dhcp-mysql],
AC_HELP_STRING([--with-dhcp-mysql=PATH],
[path to the MySQL 'mysql_config' script (MySQL is used for the DHCP database)]),
2012-10-22 20:05:35 +01:00
[mysql_config="$withval"])
if test "${mysql_config}" = "yes" ; then
MYSQL_CONFIG="/usr/bin/mysql_config"
elif test "${mysql_config}" != "no" ; then
MYSQL_CONFIG="${withval}"
fi
if test "$MYSQL_CONFIG" != "" ; then
2012-10-24 14:12:06 +01:00
if test -d "$MYSQL_CONFIG" -o ! -x "$MYSQL_CONFIG" ; then
AC_MSG_ERROR([--with-dhcp-mysql should point to a mysql_config program])
2012-10-22 20:05:35 +01:00
fi
MYSQL_CPPFLAGS=`$MYSQL_CONFIG --cflags`
MYSQL_LIBS=`$MYSQL_CONFIG --libs`
2013-09-10 11:33:32 +02:00
MYSQL_VERSION=`$MYSQL_CONFIG --version`
2012-10-22 20:05:35 +01:00
AC_SUBST(MYSQL_CPPFLAGS)
AC_SUBST(MYSQL_LIBS)
# Check that a simple program using MySQL functions can compile and link.
CPPFLAGS_SAVED="$CPPFLAGS"
LIBS_SAVED="$LIBS"
CPPFLAGS="$MYSQL_CPPFLAGS $CPPFLAGS"
LIBS="$MYSQL_LIBS $LIBS"
AC_LINK_IFELSE(
2012-11-14 07:33:55 -06:00
[AC_LANG_PROGRAM([#include <mysql.h>],
2012-10-22 20:05:35 +01:00
[MYSQL mysql_handle;
(void) mysql_init(&mysql_handle);
])],
[AC_MSG_RESULT([checking for MySQL headers and library... yes])],
[AC_MSG_RESULT([checking for MySQL headers and library... no])
AC_MSG_ERROR([Needs MySQL library])]
)
CPPFLAGS=$CPPFLAGS_SAVED
LIBS=$LIBS_SAVED
# Note that MYSQL is present in the config.h file
AC_DEFINE([HAVE_MYSQL], [1], [MySQL is present])
fi
2014-02-25 15:54:02 -05:00
# Solaris puts FIONREAD in filio.h
2014-04-25 13:44:55 -04:00
AC_CHECK_HEADERS(sys/filio.h,,,)
2014-02-25 15:54:02 -05:00
2012-10-22 20:05:35 +01:00
# ... and at the shell level, so Makefile.am can take action depending on this.
AM_CONDITIONAL(HAVE_MYSQL, test "$MYSQL_CONFIG" != "")
2014-03-11 15:42:26 +01:00
pg_config="no"
AC_ARG_WITH([dhcp-pgsql],
AC_HELP_STRING([--with-dhcp-pgsql=PATH],
[path to the PostgreSQL 'pg_config' script]),
[pg_config="$withval"])
if test "${pg_config}" = "yes" ; then
PG_CONFIG="/usr/bin/pg_config"
elif test "${pg_config}" != "no" ; then
PG_CONFIG="${withval}"
fi
if test "$PG_CONFIG" != "" ; then
if test -d "$PG_CONFIG" -o ! -x "$PG_CONFIG" ; then
AC_MSG_ERROR([--with-dhcp-pgsql should point to a pg_config program])
fi
PGSQL_CPPFLAGS=`$PG_CONFIG --cppflags`
PGSQL_INCLUDEDIR=`$PG_CONFIG --includedir`
PGSQL_CPPFLAGS="$PGSQL_CPPFLAGS -I$PGSQL_INCLUDEDIR"
2014-03-28 07:17:51 -04:00
PGSQL_LIBS=`$PG_CONFIG --libdir`
PGSQL_LIBS="-L$PGSQL_LIBS -lpq"
2014-03-11 15:42:26 +01:00
PGSQL_VERSION=`$PG_CONFIG --version`
AC_SUBST(PGSQL_CPPFLAGS)
AC_SUBST(PGSQL_LIBS)
# Check that a simple program using PostgreSQL functions can compile and link.
CPPFLAGS_SAVED="$CPPFLAGS"
LIBS_SAVED="$LIBS"
CPPFLAGS="$PGSQL_CPPFLAGS $CPPFLAGS"
LIBS="$PGSQL_LIBS $LIBS"
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([#include <libpq-fe.h>],
[PGconn * c = PQconnectdb("dbname = 'postgres'");
PQfinish(c);])],
[AC_MSG_RESULT([checking for PostgreSQL headers and library... yes])],
[AC_MSG_RESULT([checking for PostgreSQL headers and library... no])
AC_MSG_ERROR([Needs PostgreSQL library])]
)
CPPFLAGS=$CPPFLAGS_SAVED
LIBS=$LIBS_SAVED
# Note that PostgreSQL is present in the config.h file
AC_DEFINE([HAVE_PGSQL], [1], [PostgreSQL is present])
fi
# ... and at the shell level, so Makefile.am can take action depending on this.
AM_CONDITIONAL(HAVE_PGSQL, test "$PG_CONFIG" != "")
2011-04-08 15:49:22 +02:00
2011-05-19 13:52:58 +01:00
# Check for log4cplus
log4cplus_path="yes"
AC_ARG_WITH([log4cplus],
AC_HELP_STRING([--with-log4cplus=PATH],
[specify exact directory of log4cplus library and headers]),
[log4cplus_path="$withval"])
2011-09-29 11:17:37 -05:00
if test "${log4cplus_path}" = "no" ; then
2011-05-19 13:52:58 +01:00
AC_MSG_ERROR([Need log4cplus])
elif test "${log4cplus_path}" != "yes" ; then
LOG4CPLUS_INCLUDES="-I${log4cplus_path}/include"
2011-11-30 16:08:29 +01:00
LOG4CPLUS_LIBS="-L${log4cplus_path}/lib"
2011-05-19 13:52:58 +01:00
else
# If not specified, try some common paths.
log4cplusdirs="/usr/local /usr/pkg /opt /opt/local"
for d in $log4cplusdirs
do
if test -f $d/include/log4cplus/logger.h; then
LOG4CPLUS_INCLUDES="-I$d/include"
2011-11-30 16:08:29 +01:00
LOG4CPLUS_LIBS="-L$d/lib"
2011-05-19 13:52:58 +01:00
break
fi
done
fi
2012-10-07 21:20:52 -07:00
LOG4CPLUS_LIBS="$LOG4CPLUS_LIBS -llog4cplus $MULTITHREADING_FLAG"
2011-05-19 13:52:58 +01:00
2011-11-30 16:08:29 +01:00
AC_SUBST(LOG4CPLUS_LIBS)
2011-05-19 13:52:58 +01:00
AC_SUBST(LOG4CPLUS_INCLUDES)
CPPFLAGS_SAVED=$CPPFLAGS
CPPFLAGS="$LOG4CPLUS_INCLUDES $CPPFLAGS"
2011-11-30 14:53:58 +01:00
LIBS_SAVED="$LIBS"
2011-11-30 16:08:29 +01:00
LIBS="$LOG4CPLUS_LIBS $LIBS"
2011-05-19 13:52:58 +01:00
AC_CHECK_HEADERS([log4cplus/logger.h],,AC_MSG_ERROR([Missing required header files.]))
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([#include <log4cplus/logger.h>
],
[using namespace log4cplus;
Logger logger = Logger::getInstance("main");
])],
[AC_MSG_RESULT([checking for log4cplus library... yes])],
[AC_MSG_RESULT([checking for log4cplus library... no])
AC_MSG_ERROR([Needs log4cplus library])]
)
2013-09-10 11:33:32 +02:00
dnl Determine the log4cplus version, used mainly for config.report.
AC_MSG_CHECKING([log4cplus version])
cat > conftest.cpp << EOF
2013-09-12 15:45:08 +02:00
#include <log4cplus/version.h>
2013-09-10 11:33:32 +02:00
AUTOCONF_LOG4CPLUS_VERSION=LOG4CPLUS_VERSION_STR
EOF
2013-09-12 15:45:08 +02:00
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`
2013-09-10 11:33:32 +02:00
if test -z "$LOG4CPLUS_VERSION"; then
LOG4CPLUS_VERSION="unknown"
fi
$RM -f conftest.cpp
AC_MSG_RESULT([$LOG4CPLUS_VERSION])
2011-05-19 13:52:58 +01:00
CPPFLAGS=$CPPFLAGS_SAVED
2011-11-30 14:53:58 +01:00
LIBS=$LIBS_SAVED
2011-05-19 13:52:58 +01:00
2010-09-23 08:37:43 +00:00
#
# Configure Boost header path
#
2012-12-27 17:54:42 -08:00
AX_BOOST_FOR_BIND10
# Boost offset_ptr is required in one library and not optional right now, so
# we unconditionally fail here if it doesn't work.
2013-08-16 09:59:55 +02:00
if test "$BOOST_OFFSET_PTR_WOULDFAIL" = "yes" -a "$werror_ok" = 1; then
2012-12-27 17:54:42 -08:00
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.])
2010-03-18 01:56:04 +00:00
fi
2012-08-01 18:19:00 -07:00
2013-07-08 08:19:31 +05:30
if test "$BOOST_STATIC_ASSERT_WOULDFAIL" = "yes" -a X"$werror_ok" = X1; then
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.])
fi
2012-12-27 18:14:36 -08:00
# There's a known bug in FreeBSD ports for Boost that would trigger a false
2012-12-27 18:59:06 -08:00
# warning in build with g++ and -Werror (we exclude clang++ explicitly to
# avoid unexpected false positives).
2012-12-28 21:48:36 +00:00
if test "$BOOST_NUMERIC_CAST_WOULDFAIL" = "yes" -a X"$werror_ok" = X1 -a $CLANGPP = "no"; then
2012-12-27 18:14:36 -08:00
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.])
fi
2013-03-13 14:26:20 -07:00
use_shared_memory=yes
AC_ARG_WITH(shared-memory,
AC_HELP_STRING([--with-shared-memory],
[Build with Boost shared memory support; for large scale authoritative DNS servers]),
[use_shared_memory=$withval])
2014-02-28 04:59:12 +05:30
if test X$use_shared_memory = Xyes -a "$BOOST_MAPPED_FILE_WOULDFAIL" = "yes" -a "$want_dns" = "yes"; then
2013-04-29 23:47:34 -07:00
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.])
2013-03-13 14:26:20 -07:00
fi
AM_CONDITIONAL([USE_SHARED_MEMORY], [test x$use_shared_memory = xyes])
2013-05-16 10:30:34 -07:00
if test "x$use_shared_memory" = "xyes"; then
AC_DEFINE(USE_SHARED_MEMORY, 1, [Define to 1 if shared memory support is enabled])
fi
2013-03-13 14:26:20 -07:00
AC_SUBST(BOOST_MAPPED_FILE_CXXFLAG)
2014-02-28 04:59:12 +05:30
if test "$BOOST_OFFSET_PTR_OLD" = "yes" -a "$use_shared_memory" = "yes" -a "$want_dns" = "yes"; then
2013-08-07 12:50:52 +02:00
AC_MSG_ERROR([You're trying to compile against boost older than 1.48 with
2013-08-12 12:07:09 +02:00
shared memory. Older versions of boost have a bug which causes segfaults in
offset_ptr implementation when compiled by GCC with optimisations enabled.
2013-08-13 17:20:24 +05:30
See ticket no. 3025 for details.
2013-08-07 12:50:52 +02:00
Either update boost to newer version or use --without-shared-memory.
Note that most users likely don't need shared memory support.
])
fi
2012-12-27 18:14:36 -08:00
# Add some default CPP flags needed for Boost, identified by the AX macro.
2012-12-28 07:11:03 +00:00
CPPFLAGS="$CPPFLAGS $CPPFLAGS_BOOST_THREADCONF"
2010-03-18 01:56:04 +00:00
2011-11-30 14:53:58 +01:00
# I can't get some of the #include <asio.hpp> right without this
# TODO: find the real cause of asio/boost wanting pthreads
# (this currently only occurs for src/lib/cc/session_unittests)
PTHREAD_LDFLAGS=
AC_CHECK_LIB(pthread, pthread_create,[ PTHREAD_LDFLAGS=-lpthread ], [])
AC_SUBST(PTHREAD_LDFLAGS)
AC_SUBST(MULTITHREADING_FLAG)
2011-02-23 19:01:11 +01:00
2009-12-29 16:07:20 +00:00
#
2010-01-26 19:41:22 +00:00
# Check availability of gtest, which will be used for unit tests.
2009-12-29 16:07:20 +00:00
#
2012-07-06 16:03:09 -05:00
GTEST_LDFLAGS=
GTEST_LDADD=
DISTCHECK_GTEST_CONFIGURE_FLAG=
2013-09-10 11:33:32 +02:00
GTEST_VERSION="unknown"
2012-07-11 18:04:19 -05:00
2012-07-06 16:03:09 -05:00
if test "x$enable_gtest" = "xyes" ; then
2012-07-05 21:48:16 -05:00
2012-12-10 13:41:48 -06:00
DISTCHECK_GTEST_CONFIGURE_FLAG="--with-gtest=$gtest_path"
2012-07-16 14:57:11 +02:00
if test -n "$with_gtest_source" ; then
2012-07-05 21:48:16 -05:00
if test "x$GTEST_SOURCE" = "xyes" ; then
2012-07-06 18:46:20 -05:00
AC_MSG_CHECKING([for gtest source])
2012-07-05 21:48:16 -05:00
# If not specified, try some common paths.
2012-07-06 18:46:20 -05:00
GTEST_SOURCE=
2012-07-16 14:57:11 +02:00
for d in /usr/src/gtest /usr/local /usr/pkg /opt /opt/local ; do
if test -f $d/src/gtest-all.cc -a $d/src/gtest_main.cc; then
GTEST_SOURCE=$d
AC_MSG_RESULT([$GTEST_SOURCE])
break
fi
done
2012-07-06 18:46:20 -05:00
if test -z $GTEST_SOURCE ; then
2012-07-16 14:57:11 +02:00
AC_MSG_ERROR([no gtest source but it was selected])
2012-07-06 18:46:20 -05:00
fi
2012-07-05 21:48:16 -05:00
else
2012-07-06 18:46:20 -05:00
AC_CHECK_FILES([$GTEST_SOURCE/src/gtest-all.cc]
2012-07-05 21:48:16 -05:00
[$GTEST_SOURCE/src/gtest_main.cc],
[have_gtest_source=yes],
2012-07-06 18:46:20 -05:00
[AC_MSG_ERROR([no gtest source at $GTEST_SOURCE])])
2012-07-05 21:48:16 -05:00
fi
2012-07-06 18:46:20 -05:00
have_gtest_source=yes
2012-07-16 14:57:11 +02:00
GTEST_LDFLAGS="\$(top_builddir)/libgtest.a"
2012-07-06 18:46:20 -05:00
DISTCHECK_GTEST_CONFIGURE_FLAG="--with-gtest-source=$GTEST_SOURCE"
GTEST_INCLUDES="-I$GTEST_SOURCE -I$GTEST_SOURCE/include"
2012-07-11 18:04:19 -05:00
# See $GTEST_SOURCE/include/gtest/internal/gtest-port.h
# about GTEST_HAS_PTHREAD.
case "$host" in
*-solaris*|*-linux*|*-hpux*)
GTEST_LDADD="$GTEST_LDADD $PTHREAD_LDFLAGS"
;;
esac
2012-07-05 21:48:16 -05:00
fi
2012-07-16 14:57:11 +02:00
if test "$gtest_path" != "no" ; then
if test "$gtest_path" != "yes"; then
GTEST_PATHS=$gtest_path
if test -x "${gtest_path}/bin/gtest-config" ; then
GTEST_CONFIG="${gtest_path}/bin/gtest-config"
fi
else
AC_PATH_PROG([GTEST_CONFIG], [gtest-config])
fi
if test -x "${GTEST_CONFIG}" ; then :
# using cppflags instead of cxxflags
GTEST_INCLUDES=`${GTEST_CONFIG} --cppflags`
GTEST_LDFLAGS=`${GTEST_CONFIG} --ldflags`
GTEST_LDADD=`${GTEST_CONFIG} --libs`
2013-09-10 11:33:32 +02:00
GTEST_VERSION=`${GTEST_CONFIG} --version`
2012-07-16 14:57:11 +02:00
GTEST_FOUND="true"
else
AC_MSG_WARN([Unable to locate Google Test gtest-config.])
if test -z "${GTEST_PATHS}" ; then
GTEST_PATHS="/usr /usr/local"
fi
GTEST_FOUND="false"
fi
if test "${GTEST_FOUND}" != "true"; then
GTEST_FOUND="false"
for dir in $GTEST_PATHS; do
if test -f "$dir/include/gtest/gtest.h"; then
GTEST_INCLUDES="-I$dir/include"
GTEST_LDFLAGS="-L$dir/lib"
GTEST_LDADD="-lgtest"
GTEST_FOUND="true"
# There is no gtest-config script on this
# system, which is supposed to inform us
# whether we need pthreads as well (a
# gtest compile-time option). So we still
# need to test that manually.
CPPFLAGS_SAVED="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $GTEST_INCLUDES"
LDFLAGS_SAVED="$LDFLAGS"
LDFLAGS="$LDFLAGS $GTEST_LDFLAGS"
LIBS_SAVED=$LIBS
LIBS="$LIBS $GTEST_LDADD"
AC_MSG_CHECKING([Checking whether gtest tests need pthreads])
# First try to compile without pthreads
AC_TRY_LINK([
#include <gtest/gtest.h>
],[
int i = 0;
char* c = NULL;
::testing::InitGoogleTest(&i, &c);
return (0);
],
[ AC_MSG_RESULT(no) ],
[
LIBS="$SAVED_LIBS $GTEST_LDADD $PTHREAD_LDFLAGS"
# Now try to compile with pthreads
AC_TRY_LINK([
#include <gtest/gtest.h>
],[
int i = 0;
char* c = NULL;
::testing::InitGoogleTest(&i, &c);
return (0);
],
[ AC_MSG_RESULT(yes)
GTEST_LDADD="$GTEST_LDADD $PTHREAD_LDFLAGS"
],
# Apparently we can't compile it at all
[ AC_MSG_ERROR(unable to compile with gtest) ])
])
CPPFLAGS=$CPPFLAGS_SAVED
LDFLAGS=$LDFLAGS_SAVED
LIBS=$LIBS_SAVED
break
fi
done
fi
if test "${GTEST_FOUND}" != "true"; then
AC_MSG_ERROR([Cannot find gtest in: $GTEST_PATHS])
fi
2012-07-06 16:03:09 -05:00
fi
2009-10-17 00:14:33 +00:00
fi
2012-07-06 16:03:09 -05:00
AM_CONDITIONAL(HAVE_GTEST, test $enable_gtest != "no")
AM_CONDITIONAL(HAVE_GTEST_SOURCE, test "X$have_gtest_source" = "Xyes")
2011-10-06 16:00:48 -05:00
AC_SUBST(DISTCHECK_GTEST_CONFIGURE_FLAG)
2009-10-27 00:09:38 +00:00
AC_SUBST(GTEST_INCLUDES)
AC_SUBST(GTEST_LDFLAGS)
AC_SUBST(GTEST_LDADD)
2012-07-06 16:03:09 -05:00
AC_SUBST(GTEST_SOURCE)
2009-10-17 00:14:33 +00:00
2013-05-01 10:08:35 +05:30
dnl check for pkg-config itself
2010-06-10 15:41:48 +00:00
AC_CHECK_PROG(HAVE_PKG_CONFIG, pkg-config, yes, no)
if test "x$HAVE_PKG_CONFIG" = "xno" ; then
AC_MSG_ERROR(Please install pkg-config)
fi
2010-02-26 06:32:44 +00:00
2013-05-01 10:08:35 +05:30
AX_SQLITE3_FOR_BIND10
if test "x$have_sqlite" = "xyes" ; then
enable_features="$enable_features SQLite3"
2013-08-12 16:31:25 +02:00
AX_PYTHON_SQLITE3
2013-05-01 10:08:35 +05:30
fi
2010-02-26 06:32:44 +00:00
2010-05-28 01:25:08 +00:00
#
# ASIO: we extensively use it as the C++ event management module.
#
2010-05-27 18:57:15 +00:00
# Use local ASIO headers from ext
2010-05-28 01:25:08 +00:00
#
2010-05-27 18:57:15 +00:00
CPPFLAGS="$CPPFLAGS -I\$(top_srcdir)/ext/asio"
2010-05-28 01:25:08 +00:00
#
2011-02-14 16:13:43 +01:00
# Use our 'coroutine' header from ext
CPPFLAGS="$CPPFLAGS -I\$(top_srcdir)/ext/coroutine"
#
2010-09-21 04:04:49 +00:00
# Disable threads: Currently we don't use them.
CPPFLAGS="$CPPFLAGS -DASIO_DISABLE_THREADS=1"
2010-05-31 01:05:35 +00:00
2012-03-21 10:05:33 +05:30
# Check for functions that are not available on all platforms
2012-03-20 00:17:20 +05:30
AC_CHECK_FUNCS([pselect])
2010-05-31 01:05:35 +00:00
# /dev/poll issue: ASIO uses /dev/poll by default if it's available (generally
# the case with Solaris). Unfortunately its /dev/poll specific code would
# trigger the gcc's "missing-field-initializers" warning, which would
# subsequently make the build fail with -Werror. Further, older versions of
2010-05-31 01:42:42 +00:00
# gcc don't provide an option to selectively suppress this warning.
2010-05-31 01:05:35 +00:00
# So, for the moment, we simply disable the use of /dev/poll. Unless we
# implement recursive DNS server with randomized ports, we don't need the
# scalability that /dev/poll can provide, so this decision wouldn't affect
2011-01-19 08:13:54 -06:00
# run time performance. Hopefully we can find a better solution or the ASIO
2010-05-31 01:05:35 +00:00
# code will be updated by the time we really need it.
AC_CHECK_HEADERS(sys/devpoll.h, ac_cv_have_devpoll=yes, ac_cv_have_devpoll=no)
2010-06-23 06:25:14 +00:00
if test "X$ac_cv_have_devpoll" = "Xyes" -a "X$GXX" = "Xyes"; then
2010-05-31 01:05:35 +00:00
CPPFLAGS="$CPPFLAGS -DASIO_DISABLE_DEV_POLL=1"
fi
2010-05-27 18:57:15 +00:00
2011-03-03 17:16:55 -08:00
#
# Perl is optional; it is used only by some of the system test scripts.
#
AC_PATH_PROGS(PERL, perl5 perl)
AC_SUBST(PERL)
2011-10-05 16:56:56 +01:00
AC_PATH_PROGS(AWK, gawk awk)
AC_SUBST(AWK)
2011-03-03 17:16:55 -08:00
2012-08-02 20:55:20 -05:00
AC_ARG_ENABLE(generate_docs, [AC_HELP_STRING([--enable-generate-docs],
[regenerate documentation using Docbook [default=no]])],
enable_generate_docs=$enableval, enable_generate_docs=no)
2012-06-01 12:38:13 -07:00
# Check for xsltproc
2012-08-02 20:55:20 -05:00
if test "x$enable_generate_docs" != xno ; then
2012-06-01 12:38:13 -07:00
AC_PATH_PROG([XSLTPROC], [xsltproc])
if test -z "$XSLTPROC"; then
2012-08-02 20:55:20 -05:00
AC_MSG_ERROR("xsltproc not found; it is required for --enable-generate-docs")
2012-06-01 12:38:13 -07:00
else
AC_MSG_CHECKING([if $XSLTPROC works])
# run xsltproc to see if works
$XSLTPROC --novalid --xinclude --nonet http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
if test $? -ne 0 ; then
AC_MSG_ERROR("Error with $XSLTPROC using release/xsl/current/manpages/docbook.xsl")
fi
$XSLTPROC --novalid --xinclude --nonet http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl
if test $? -ne 0 ; then
AC_MSG_ERROR("Error with $XSLTPROC using release/xsl/current/html/docbook.xsl")
fi
2012-06-15 08:07:18 -05:00
AC_MSG_RESULT(yes)
2012-06-01 12:38:13 -07:00
fi
2013-07-25 11:25:39 +05:30
AC_PATH_PROG([ELINKS], [elinks])
if test -z "$ELINKS"; then
AC_MSG_ERROR("elinks not found; it is required for --enable-generate-docs")
fi
2012-06-01 12:38:13 -07:00
fi
2010-03-18 12:52:31 +00:00
2012-08-02 20:55:20 -05:00
AM_CONDITIONAL(GENERATE_DOCS, test x$enable_generate_docs != xno)
2009-10-16 06:20:23 +00:00
2010-03-19 14:06:09 +00:00
AC_ARG_ENABLE(install-configurations,
[AC_HELP_STRING([--disable-install-configurations],
[do not install configuration])], install_configurations=$enableval, install_configurations=yes)
2010-03-19 04:47:16 +00:00
2010-03-19 14:06:09 +00:00
AM_CONDITIONAL(INSTALL_CONFIGURATIONS, test x$install_configurations = xyes || test x$install_configurations = xtrue)
2010-03-19 04:47:16 +00:00
2012-05-01 15:18:42 +05:30
AC_ARG_ENABLE(logger-checks, [AC_HELP_STRING([--enable-logger-checks],
[check logger messages [default=no]])], enable_logger_checks=$enableval, enable_logger_checks=no)
AM_CONDITIONAL(ENABLE_LOGGER_CHECKS, test x$enable_logger_checks != xno)
AM_COND_IF([ENABLE_LOGGER_CHECKS], [AC_DEFINE([ENABLE_LOGGER_CHECKS], [1], [Check logger messages?])])
2013-06-18 23:50:17 +05:30
# Check for asciidoc
AC_PATH_PROG(ASCIIDOC, asciidoc, no)
AM_CONDITIONAL(HAVE_ASCIIDOC, test "x$ASCIIDOC" != "xno")
# Check for plantuml
AC_PATH_PROG(PLANTUML, plantuml, no)
AM_CONDITIONAL(HAVE_PLANTUML, test "x$PLANTUML" != "xno")
2012-06-12 16:29:15 +05:30
# Check for valgrind
AC_PATH_PROG(VALGRIND, valgrind, no)
AM_CONDITIONAL(HAVE_VALGRIND, test "x$VALGRIND" != "xno")
2012-10-11 17:22:23 +02:00
# Also check for valgrind headers
# We could consider adding them to the source code tree, as this
# is the encouraged method of using them; they are BSD-licensed.
# However, until we find that this is a problem, we just use
# the system-provided ones, if available
AC_CHECK_HEADERS(valgrind/valgrind.h, [AC_DEFINE([HAVE_VALGRIND_HEADERS], [1], [Check valgrind headers])])
2012-06-18 16:24:34 +05:30
found_valgrind="not found"
if test "x$VALGRIND" != "xno"; then
found_valgrind="found"
2012-06-12 16:29:15 +05:30
fi
2012-09-20 11:19:51 +02:00
# Check for optreset in unistd.h. On BSD systems the optreset is
# used to reset the state of getopt() function. Resetting its state
# is required if command line arguments are parsed multiple times
# during a program. On Linux this variable will not exist because
# getopt() reset is performed by setting optind = 0. On Operating
# Systems where optreset is defined use optreset = 1 and optind = 1
# to reset internal state of getopt(). Failing to do so will result
# in unpredictable output from getopt().
AC_MSG_CHECKING([whether optreset variable is defined in unistd.h])
AC_TRY_LINK(
[#include <unistd.h>],
2012-09-21 18:22:45 +02:00
[extern int optreset; optreset=1;],
2012-09-20 11:19:51 +02:00
[ AC_MSG_RESULT(yes)
var_optreset_exists=yes],
[ AC_MSG_RESULT(no)
var_optreset_exists=no]
)
AM_CONDITIONAL(HAVE_OPTRESET, test "x$var_optreset_exists" != "xno")
2012-09-20 12:02:55 +02:00
AM_COND_IF([HAVE_OPTRESET], [AC_DEFINE([HAVE_OPTRESET], [1], [Check for optreset?])])
2012-09-20 11:19:51 +02:00
2013-12-30 11:04:25 +02:00
AC_CONFIG_FILES([compatcheck/Makefile
dns++.pc
2013-06-18 23:50:17 +05:30
doc/design/datasrc/Makefile
2013-12-30 11:04:25 +02:00
doc/design/Makefile
doc/guide/Makefile
doc/Makefile
doc/version.ent
2013-08-16 13:01:30 +01:00
ext/asio/asio/Makefile
2013-12-30 11:04:25 +02:00
ext/asio/Makefile
ext/Makefile
m4macros/Makefile
Makefile
2013-02-04 12:53:25 +01:00
src/bin/bind10/bind10
2013-12-30 11:04:25 +02:00
src/bin/bind10/init.py
2009-12-15 18:14:20 +00:00
src/bin/bind10/Makefile
2013-12-30 11:04:25 +02:00
src/bin/bind10/run_bind10.sh
src/bin/bind10/tests/init_test.py
2010-04-20 17:54:47 +00:00
src/bin/bind10/tests/Makefile
2013-12-30 11:04:25 +02:00
src/bin/bindctl/bindctl_main.py
2010-01-20 17:46:09 +00:00
src/bin/bindctl/Makefile
2013-12-30 11:04:25 +02:00
src/bin/bindctl/run_bindctl.sh
src/bin/bindctl/tests/bindctl_test
2010-04-20 17:54:47 +00:00
src/bin/bindctl/tests/Makefile
2013-12-30 11:04:25 +02:00
src/bin/cfgmgr/b10-cfgmgr.py
2012-10-19 10:14:44 -05:00
src/bin/cfgmgr/local_plugins/Makefile
2013-12-30 11:04:25 +02:00
src/bin/cfgmgr/Makefile
src/bin/cfgmgr/plugins/datasrc.spec.pre
2011-04-19 09:30:55 +02:00
src/bin/cfgmgr/plugins/Makefile
2011-05-11 12:10:28 +02:00
src/bin/cfgmgr/plugins/tests/Makefile
2013-12-30 11:04:25 +02:00
src/bin/cfgmgr/tests/b10-cfgmgr_test.py
2010-06-16 16:10:49 +00:00
src/bin/cfgmgr/tests/Makefile
2013-12-30 11:04:25 +02:00
src/bin/cmdctl/cmdctl.py
src/bin/cmdctl/cmdctl.spec.pre
src/bin/cmdctl/Makefile
src/bin/cmdctl/run_b10-cmdctl.sh
src/bin/cmdctl/tests/cmdctl_test
src/bin/cmdctl/tests/Makefile
src/bin/d2/Makefile
src/bin/d2/spec_config.h.pre
src/bin/d2/tests/Makefile
src/bin/d2/tests/test_data_files_config.h
src/bin/dhcp4/Makefile
src/bin/dhcp4/spec_config.h.pre
src/bin/dhcp4/tests/Makefile
src/bin/dhcp4/tests/marker_file.h
2014-01-06 10:56:59 -05:00
src/bin/dhcp4/tests/test_data_files_config.h
2013-12-30 11:04:25 +02:00
src/bin/dhcp4/tests/test_libraries.h
src/bin/dhcp6/Makefile
src/bin/dhcp6/spec_config.h.pre
src/bin/dhcp6/tests/Makefile
src/bin/dhcp6/tests/marker_file.h
src/bin/dhcp6/tests/test_data_files_config.h
src/bin/dhcp6/tests/test_libraries.h
src/bin/Makefile
2009-12-15 18:14:20 +00:00
src/bin/msgq/Makefile
2013-12-30 11:04:25 +02:00
src/bin/msgq/msgq.py
src/bin/msgq/run_msgq.sh
2010-04-20 17:54:47 +00:00
src/bin/msgq/tests/Makefile
2010-10-05 14:55:54 +00:00
src/bin/sockcreator/Makefile
src/bin/sockcreator/tests/Makefile
2013-12-30 11:04:25 +02:00
src/bin/stats/Makefile
src/bin/stats/stats_httpd.py
src/bin/stats/stats.py
src/bin/stats/tests/Makefile
src/bin/stats/tests/testdata/Makefile
src/bin/sysinfo/Makefile
src/bin/sysinfo/run_sysinfo.sh
src/bin/sysinfo/sysinfo.py
src/bin/tests/Makefile
src/bin/tests/process_rename_test.py
src/bin/usermgr/b10-cmdctl-usermgr.py
src/bin/usermgr/Makefile
src/bin/usermgr/run_b10-cmdctl-usermgr.sh
src/bin/usermgr/tests/Makefile
2013-10-11 14:10:06 -04:00
src/hooks/dhcp/Makefile
src/hooks/dhcp/user_chk/Makefile
src/hooks/dhcp/user_chk/tests/Makefile
2013-12-30 11:04:25 +02:00
src/hooks/dhcp/user_chk/tests/test_data_files_config.h
src/hooks/Makefile
2011-04-07 17:59:29 +08:00
src/lib/asiodns/Makefile
2011-04-08 17:02:44 +08:00
src/lib/asiodns/tests/Makefile
2013-12-30 11:04:25 +02:00
src/lib/asiolink/Makefile
src/lib/asiolink/tests/Makefile
2009-10-30 17:28:17 +00:00
src/lib/cc/Makefile
2013-12-30 11:04:25 +02:00
src/lib/cc/session_config.h.pre
2010-08-13 23:22:54 +00:00
src/lib/cc/tests/Makefile
2013-12-30 11:04:25 +02:00
src/lib/cc/tests/session_unittests_config.h
src/lib/config/Makefile
src/lib/config/tests/data_def_unittests_config.h
src/lib/config/tests/Makefile
src/lib/config/tests/testdata/Makefile
src/lib/cryptolink/Makefile
src/lib/cryptolink/tests/Makefile
src/lib/dhcp_ddns/Makefile
src/lib/dhcp_ddns/tests/Makefile
src/lib/dhcp/Makefile
src/lib/dhcpsrv/Makefile
src/lib/dhcpsrv/tests/Makefile
src/lib/dhcpsrv/tests/test_libraries.h
src/lib/dhcp/tests/Makefile
src/lib/dns/gen-rdatacode.py
src/lib/dns/Makefile
src/lib/dns/python/Makefile
2014-01-10 10:38:41 +05:30
src/lib/dns/python/pydnspp_config.h
2013-12-30 11:04:25 +02:00
src/lib/dns/python/tests/Makefile
src/lib/dns/tests/Makefile
src/lib/dns/tests/testdata/Makefile
src/lib/exceptions/Makefile
src/lib/exceptions/tests/Makefile
src/lib/hooks/Makefile
src/lib/hooks/tests/Makefile
src/lib/hooks/tests/marker_file.h
src/lib/hooks/tests/test_libraries.h
src/lib/log/compiler/Makefile
src/lib/log/interprocess/Makefile
src/lib/log/interprocess/tests/Makefile
src/lib/log/Makefile
src/lib/log/tests/buffer_logger_test.sh
src/lib/log/tests/console_test.sh
src/lib/log/tests/destination_test.sh
src/lib/log/tests/init_logger_test.sh
src/lib/log/tests/local_file_test.sh
src/lib/log/tests/logger_lock_test.sh
src/lib/log/tests/Makefile
src/lib/log/tests/severity_test.sh
src/lib/log/tests/tempdir.h
src/lib/Makefile
src/lib/python/bind10_config.py
src/lib/python/isc/bind10/Makefile
src/lib/python/isc/bind10/tests/Makefile
2013-02-12 12:58:46 +01:00
src/lib/python/isc/cc/cc_generated/Makefile
2013-12-30 11:04:25 +02:00
src/lib/python/isc/cc/Makefile
src/lib/python/isc/cc/tests/cc_test
2010-04-20 17:54:47 +00:00
src/lib/python/isc/cc/tests/Makefile
2010-03-05 04:31:28 +00:00
src/lib/python/isc/config/Makefile
2013-12-30 11:04:25 +02:00
src/lib/python/isc/config/tests/config_test
2010-04-20 17:54:47 +00:00
src/lib/python/isc/config/tests/Makefile
2013-12-30 11:04:25 +02:00
src/lib/python/isc/dns/Makefile
2010-05-27 12:03:32 +00:00
src/lib/python/isc/log/Makefile
2011-09-09 15:57:43 -07:00
src/lib/python/isc/log_messages/Makefile
2013-12-30 11:04:25 +02:00
src/lib/python/isc/log_messages/work/__init__.py
2011-09-09 15:57:43 -07:00
src/lib/python/isc/log_messages/work/Makefile
2013-12-30 11:04:25 +02:00
src/lib/python/isc/log/tests/log_console.py
src/lib/python/isc/log/tests/Makefile
src/lib/python/isc/Makefile
2010-09-29 14:28:21 +00:00
src/lib/python/isc/net/Makefile
2010-09-29 14:29:03 +00:00
src/lib/python/isc/net/tests/Makefile
2013-12-30 11:04:25 +02:00
src/lib/python/isc/sysinfo/Makefile
src/lib/python/isc/sysinfo/tests/Makefile
src/lib/python/isc/testutils/Makefile
src/lib/python/isc/util/cio/Makefile
src/lib/python/isc/util/cio/tests/Makefile
src/lib/python/isc/util/Makefile
src/lib/python/isc/util/tests/Makefile
src/lib/python/Makefile
src/lib/testutils/Makefile
src/lib/testutils/testdata/Makefile
2011-04-27 10:35:13 +02:00
src/lib/util/io/Makefile
2013-12-30 11:04:25 +02:00
src/lib/util/Makefile
src/lib/util/python/doxygen2pydoc.py
src/lib/util/python/gen_wiredata.py
2011-08-04 17:23:22 -07:00
src/lib/util/python/Makefile
2013-12-30 11:04:25 +02:00
src/lib/util/python/mkpywrapper.py
2011-05-12 02:15:33 -07:00
src/lib/util/pyunittests/Makefile
2011-04-27 10:35:13 +02:00
src/lib/util/tests/Makefile
2013-12-30 11:04:25 +02:00
src/lib/util/threads/Makefile
src/lib/util/threads/tests/Makefile
src/lib/util/unittests/Makefile
src/Makefile
2011-03-03 19:35:33 -08:00
tests/Makefile
2013-12-30 11:04:25 +02:00
tests/tools/Makefile
2011-12-23 16:17:42 +00:00
tests/tools/perfdhcp/Makefile
2012-05-10 13:01:10 +02:00
tests/tools/perfdhcp/tests/Makefile
2012-12-04 20:29:20 +01:00
tests/tools/perfdhcp/tests/testdata/Makefile
2013-12-30 10:47:23 +02:00
])
AC_CONFIG_COMMANDS([permissions], [
2013-02-04 12:53:25 +01:00
chmod +x src/bin/bind10/bind10
2010-01-29 01:02:47 +00:00
chmod +x src/bin/bind10/run_bind10.sh
2013-12-30 11:04:25 +02:00
chmod +x src/bin/bindctl/run_bindctl.sh
chmod +x src/bin/bindctl/tests/bindctl_test
chmod +x src/bin/cmdctl/run_b10-cmdctl.sh
2010-03-25 11:18:34 +00:00
chmod +x src/bin/cmdctl/tests/cmdctl_test
2013-12-30 11:04:25 +02:00
chmod +x src/bin/msgq/run_msgq.sh
2012-10-24 21:10:39 +00:00
chmod +x src/bin/sysinfo/run_sysinfo.sh
2010-03-10 08:48:08 +00:00
chmod +x src/bin/usermgr/run_b10-cmdctl-usermgr.sh
2010-03-12 17:16:02 +00:00
chmod +x src/lib/dns/gen-rdatacode.py
2011-05-26 17:45:17 +01:00
chmod +x src/lib/log/tests/console_test.sh
2011-06-06 14:11:27 +01:00
chmod +x src/lib/log/tests/destination_test.sh
2011-06-29 19:08:56 +01:00
chmod +x src/lib/log/tests/init_logger_test.sh
chmod +x src/lib/log/tests/local_file_test.sh
2012-05-28 18:25:26 +05:30
chmod +x src/lib/log/tests/logger_lock_test.sh
2011-05-27 19:13:33 +01:00
chmod +x src/lib/log/tests/severity_test.sh
2013-12-30 11:04:25 +02:00
chmod +x src/lib/python/isc/log/tests/log_console.py
2013-06-07 01:33:18 +05:30
chmod +x src/lib/util/python/doxygen2pydoc.py
2011-08-04 17:23:22 -07:00
chmod +x src/lib/util/python/gen_wiredata.py
2013-12-30 11:04:25 +02:00
chmod +x src/lib/util/python/mkpywrapper.py
])
2013-12-30 10:47:23 +02:00
2009-10-16 06:20:23 +00:00
AC_OUTPUT
2010-05-17 14:05:15 +00:00
dnl Print the results
dnl
cat > config.report << END
2014-04-14 21:18:01 +02:00
Kea source configure results:
2010-05-17 14:05:15 +00:00
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Package:
2013-09-10 11:33:32 +02:00
Name: ${PACKAGE_NAME}
Version: ${PACKAGE_VERSION}
OS Family: ${OS_TYPE}
2013-09-12 15:45:08 +02:00
Using GNU sed: ${GNU_SED}
2013-09-10 11:33:32 +02:00
C++ Compiler:
CXX: ${CXX}
2013-09-12 15:45:08 +02:00
CXX_VERSION: ${CXX_VERSION}
2013-09-10 11:33:32 +02:00
DEFS: ${DEFS}
CPPFLAGS: ${CPPFLAGS}
CXXFLAGS: ${CXXFLAGS}
LDFLAGS: ${LDFLAGS}
B10_CXXFLAGS: ${B10_CXXFLAGS}
Python:
PYTHON_VERSION: ${PYTHON_VERSION}
PYTHON_INCLUDES: ${PYTHON_INCLUDES}
PYTHON_CXXFLAGS: ${PYTHON_CXXFLAGS}
PYTHON_LDFLAGS: ${PYTHON_LDFLAGS}
PYTHON_LIB: ${PYTHON_LIB}
Boost:
BOOST_VERSION: ${BOOST_VERSION}
BOOST_INCLUDES: ${BOOST_INCLUDES}
Botan:
BOTAN_VERSION: ${BOTAN_VERSION}
BOTAN_INCLUDES: ${BOTAN_INCLUDES}
BOTAN_LDFLAGS: ${BOTAN_LDFLAGS}
BOTAN_LIBS: ${BOTAN_LIBS}
Log4cplus:
LOG4CPLUS_VERSION: ${LOG4CPLUS_VERSION}
LOG4CPLUS_INCLUDES: ${LOG4CPLUS_INCLUDES}
LOG4CPLUS_LIBS: ${LOG4CPLUS_LIBS}
SQLite:
SQLITE_VERSION: ${SQLITE_VERSION}
SQLITE_CFLAGS: ${SQLITE_CFLAGS}
SQLITE_LIBS: ${SQLITE_LIBS}
2012-10-29 13:43:31 +00:00
END
# Avoid confusion on DNS/DHCP and only mention MySQL if it
# were specified on the command line.
if test "$MYSQL_CPPFLAGS" != "" ; then
cat >> config.report << END
2013-09-10 11:33:32 +02:00
MySQL:
MYSQL_VERSION: ${MYSQL_VERSION}
MYSQL_CPPFLAGS: ${MYSQL_CPPFLAGS}
MYSQL_LIBS: ${MYSQL_LIBS}
END
2014-03-11 15:42:26 +01:00
else
cat >> config.report << END
MySQL: no
END
fi
if test "$PGSQL_CPPFLAGS" != "" ; then
cat >> config.report << END
PostgreSQL:
PGSQL_VERSION: ${PGSQL_VERSION}
PGSQL_CPPFLAGS: ${PGSQL_CPPFLAGS}
PGSQL_LIBS: ${PGSQL_LIBS}
END
else
cat >> config.report << END
PostgreSQL: no
END
2013-09-10 11:33:32 +02:00
fi
if test "$enable_gtest" != "no"; then
cat >> config.report << END
GTest:
GTEST_VERSION: ${GTEST_VERSION}
GTEST_INCLUDES: ${GTEST_INCLUDES}
GTEST_LDFLAGS: ${GTEST_LDFLAGS}
GTEST_LDADD: ${GTEST_LDADD}
GTEST_SOURCE: ${GTEST_SOURCE}
2012-10-29 13:43:31 +00:00
END
fi
cat >> config.report << END
2010-05-17 14:05:15 +00:00
Features:
$enable_features
Developer:
2012-10-18 19:12:37 +05:30
Enable Debugging: $debug_enabled
2012-07-06 16:03:09 -05:00
Google Tests: $enable_gtest
2012-06-18 16:24:34 +05:30
Valgrind: $found_valgrind
2010-10-07 17:30:20 +00:00
C++ Code Coverage: $USE_LCOV
2010-11-12 12:18:39 +00:00
Python Code Coverage: $USE_PYCOVERAGE
2012-06-12 19:41:21 +05:30
Logger checks: $enable_logger_checks
2012-08-02 20:55:20 -05:00
Generate Documentation: $enable_generate_docs
2010-05-17 14:05:15 +00:00
END
cat config.report
cat <<EOF
2013-10-01 13:54:18 +05:30
Now you can type "make" to build BIND 10. Note that if you intend to
run "make check", you must run "make" first as some files need to be
generated by "make" before "make check" can be run.
2010-05-17 14:05:15 +00:00
2013-12-02 16:06:17 +02:00
When running "make install" do not use any form of parallel or job
2013-12-05 17:38:23 +05:30
server options (such as GNU make's -j option). Doing so may cause
errors.
2013-12-02 16:06:17 +02:00
2010-05-17 14:05:15 +00:00
EOF