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
2021-01-04 15:47:04 +02:00
AC_PREREQ([2.69])
2014-06-16 17:27:03 +02:00
# For released versions, this is in x.y.z format.
2021-01-27 17:40:14 +02:00
# For GIT versions, this is x.y.z-git, where x.y.z denotes the next development
# version that is worked on and that is to be released.
2024-08-28 13:33:26 +03:00
AC_INIT(kea, 2.7.3-git, kea-dev@lists.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)
2024-08-13 13:45:25 +03:00
AM_SILENT_RULES([yes])
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
2015-02-27 14:36:24 +01:00
AC_CANONICAL_HOST
2015-03-06 18:45:45 +01:00
AC_CANONICAL_BUILD
2015-02-27 14:36:24 +01:00
2023-09-22 14:49:48 +03:00
# Check if the user provided a CXXFLAGS. Must be done before AC_PROG_CXX which
# sets it to a default.
if test -n "${CXXFLAGS+x}"; then
custom_cxxflags=true
else
custom_cxxflags=false
fi
2021-01-16 10:17:20 +02:00
# Check for compilers.
2009-10-16 06:20:23 +00:00
AC_PROG_CXX
2011-01-07 11:59:03 -08:00
2021-01-16 10:17:20 +02:00
# Check for preprocessors.
AC_PROG_CXXCPP
2024-08-26 16:36:50 +03:00
# Check for ln -s.
AC_PROG_LN_S
2014-08-11 16:09:43 +02:00
# Check for exact Kea version.
2023-10-03 18:34:33 +02:00
AC_MSG_CHECKING(whether this is a tarball or git source or package preparation)
# KEA_PKG_VERSION_IN_CONFIGURE and KEA_PKG_TYPE_IN_CONFIGURE names may be weird
# considering those are placed inside configure script, but those are designed
# to be set in package sources (APKBUILD, rules or kea.spec) kea-packaging repo
# KEA_PKG_VERSION_IN_CONFIGURE will be date and timestamp of the package
# e.g. "isc20230921141113"
# KEA_PKG_TYPE_IN_CONFIGURE will be type of the package "rpm", "deb" or "apk"
if test -n "$KEA_PKG_VERSION_IN_CONFIGURE"; then
KEA_SRCID="$KEA_PKG_VERSION_IN_CONFIGURE $KEA_PKG_TYPE_IN_CONFIGURE"
AC_MSG_RESULT("$KEA_PKG_TYPE_IN_CONFIGURE")
elif test -d "${srcdir}/.git"; then
2016-11-05 16:40:16 +01:00
KEA_SRCID="git `(cd "${top_srcdir}";git rev-parse HEAD)`"
2014-08-11 16:09:43 +02:00
AC_MSG_RESULT("git")
else
KEA_SRCID="tarball"
AC_MSG_RESULT("tarball")
fi
2024-03-22 11:45:06 +02:00
2024-04-23 19:57:05 +03:00
# Export KEA_SRCID to a C++ header.
2024-03-22 11:45:06 +02:00
# This will be either package version or "tarball" or "git abcd".
2018-09-21 16:57:43 +02:00
# We do not want to put this in a config.h, because it messes up ccache
# horribly. When building different branches, the commit-id is different
# and since the config.h is included in most files *and* has a different
# content, ccache can't use cached content and thus has to do full compilation.
2018-09-26 00:21:37 +02:00
# Now it is in kea_version.h and config.status substitutes it.
AC_SUBST(KEA_SRCID)
2014-08-11 16:09:43 +02:00
2020-04-28 15:56:07 +02:00
# Check whether the version is a development one (odd minor).
AC_MSG_CHECKING(whether this is a development or stable version)
PACKAGE_VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d '.' -f 2`
PACKAGE_VERSION_TYPE="stable"
if expr "$PACKAGE_VERSION_MINOR" % 2 = 1; then
PACKAGE_VERSION_TYPE="development"
fi
# Export PACKAGE_VERSION_TYPE to kea_version.h
AC_SUBST(PACKAGE_VERSION_TYPE)
2015-05-11 16:19:43 +02:00
# Find a separator for path_replacer
for sep in "+" "," ";" "&" "__NONE__"; do
2016-11-05 16:40:16 +01:00
if `pwd | grep -q $sep`; then continue; fi
if `echo ${prefix} | grep -q $sep`; then continue; fi
if `echo ${sysconfdir} | grep -q $sep`; then continue; fi
if `echo ${localstatedir} | grep -q $sep`; then continue; fi
SEP=$sep
break
2015-05-11 16:19:43 +02:00
done
if test "$sep" = "__NONE__"; then
2016-11-05 16:40:16 +01:00
AC_MSG_ERROR([can't find a separator character in '+,;&' for the path_replacer shell script])
2015-05-11 16:19:43 +02:00
fi
AC_SUBST(SEP)
2018-08-31 17:56:15 +02:00
# pkg-config can be required.
AC_PATH_PROG([PKG_CONFIG], [pkg-config])
2020-04-11 16:51:54 +02:00
# check against BusyBox ps not supporting ps -p.
ps -p 1234 2>&1 > /dev/null | grep 'unrecognized option: p'
if test $? -eq 0; then
2020-04-11 17:25:12 +02:00
AC_MSG_WARN("ps does not support -p. It is likely the BusyBox ps: please install a full ps like procps")
2020-04-11 16:51:54 +02:00
fi
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],
2021-01-04 15:47:04 +02:00
[AS_HELP_STRING([--enable-debug],
2023-09-20 14:11:33 +03:00
[enable debugging symbols, enable log4cplus's own logging, add more sanity checks in DNS code (default is no)])],
2012-10-18 19:02:04 +05:30
[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?])])
2023-09-20 14:11:33 +03:00
if test "${debug_enabled}" = 'yes'; then
2023-09-22 14:49:48 +03:00
# If the shell variable CXXFLAGS was not already set, based on compiler,
# AC_PROG_CXX can set it to -g, -O2, or both. Since they can conflict with
# what --enable-debug is setting, let's remove them, but only if the user has
# not explicitly set the variable. We don't inspect what the user set. If one
# of the conflicting flags was set, it might mean that the user wanted to
# override, which is fine.
if ! ${custom_cxxflags}; then
CXXFLAGS=''
fi
KEA_CXXFLAGS="${KEA_CXXFLAGS} -g3 -O0"
# g++ has some additional flags that can be useful.
2023-09-20 14:11:33 +03:00
if test "${GXX}" = 'yes'; then
KEA_CXXFLAGS="${KEA_CXXFLAGS} -ggdb3 -grecord-gcc-switches"
fi
fi
2012-10-18 19:02:04 +05:30
2017-12-11 01:45:34 +01:00
# Include premium configuration
2018-05-14 15:10:03 +02:00
INCLUDED_HOOKS=
2024-04-24 10:07:46 +03:00
PREMIUM=no
2016-11-02 15:03:52 +01:00
PREMIUM_DIR=
2018-02-09 16:58:42 +01:00
DISTCHECK_PREMIUM_CONFIGURE_FLAG=
2017-12-11 23:36:37 +01:00
AC_DEFUN([AX_PREMIUM],[])
2017-12-11 01:45:34 +01:00
# m4_sinclude includes the file if it exists at autoreconf time
2018-05-16 08:42:11 +02:00
m4_sinclude(premium/config.m4)
2016-11-02 14:46:21 +01:00
AC_SUBST(PREMIUM_DIR)
2018-02-09 16:58:42 +01:00
AC_SUBST(DISTCHECK_PREMIUM_CONFIGURE_FLAG)
2017-12-11 23:36:37 +01:00
AX_PREMIUM
2016-11-02 14:46:21 +01:00
2024-03-22 14:25:14 +02:00
# Export PREMIUM to kea_version.h.
AC_SUBST(PREMIUM)
2017-12-11 01:45:34 +01:00
# Include contrib configuration
2018-01-17 15:59:56 +01:00
# (currently only a provision copied from premium support)
2017-12-11 01:45:34 +01:00
CONTRIB_DIR=
2018-02-09 16:58:42 +01:00
DISTCHECK_CONTRIB_CONFIGURE_FLAG=
2017-12-11 23:36:37 +01:00
AC_DEFUN([AX_CONTRIB],[])
2017-12-11 01:45:34 +01:00
m4_sinclude(contrib/config.m4)
2017-12-11 23:36:37 +01:00
AC_SUBST(CONTRIB_DIR)
2018-02-09 16:58:42 +01:00
AC_SUBST(DISTCHECK_CONTRIB_CONFIGURE_FLAG)
2017-12-11 23:36:37 +01:00
AX_CONTRIB
2016-11-02 14:46:21 +01:00
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
2014-08-06 12:51:57 +02:00
AC_MSG_ERROR([Kea 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.])
2011-08-25 16:36:56 +02:00
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"
2014-08-21 16:10:12 +02:00
LT_INIT
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"])
2017-07-23 16:57:10 -04:00
# USE_CLANGPP is no longer used, keep it by symmetry with USE_GXX?
2010-10-10 03:27:23 +00:00
AM_CONDITIONAL(USE_CLANGPP, test "X${CLANGPP}" = "Xyes")
2010-06-23 06:25:14 +00:00
2023-07-16 14:40:03 +02:00
# Check for C++14 features support
AX_ISC_CPP14
2016-11-30 15:39:42 +01:00
2022-10-05 17:18:35 +03:00
# Check for C++20 compiler support.
AX_ISC_CPP20
2017-03-05 09:03:09 +01:00
# Check for std::is_base_of support
AC_MSG_CHECKING([for std::is_base_of])
AC_COMPILE_IFELSE(
2018-02-16 11:51:51 +02:00
[AC_LANG_PROGRAM(
[#include <type_traits>
class A {};
class B : A {};]
[static_assert(std::is_base_of<A, B>::value, "");])],
[AC_MSG_RESULT(yes)
AC_DEFINE([HAVE_IS_BASE_OF], [1],
[Define to 1 if std::is_base_of is available])],
[AC_MSG_RESULT(no)])
2017-03-05 09:03:09 +01:00
2020-07-15 21:46:39 +02:00
# Check if system and steady clocks use the same duration type.
AC_MSG_CHECKING([for different std::chrono::duration types])
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
[#include <chrono>
#include <type_traits>]
2021-01-06 14:31:02 +01:00
[static_assert(!std::is_same<
2020-07-15 21:46:39 +02:00
std::chrono::system_clock::duration,
2021-01-06 14:31:02 +01:00
std::chrono::steady_clock::duration
>::value, "");])],
2020-07-15 21:46:39 +02:00
[AC_MSG_RESULT(yes)],
[AC_MSG_RESULT(no)
AC_DEFINE([CHRONO_SAME_DURATION], [1],
[Define to 1 if system and steady clocks use the same duration type])])
2014-08-12 13:03:33 +02:00
dnl Determine if we are using GNU sed
2013-09-12 15:45:08 +02:00
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
2016-10-14 13:50:03 +02:00
# Display the C++ version
AC_MSG_CHECKING([C++ version])
cat > conftest.cpp << EOF
long v = __cplusplus;
EOF
CXX_STANDARD=`$CXX $CXXFLAGS -E -o - conftest.cpp | grep '^long v = ' | $SED -e 's/^long v = //' -e 's/[[^0-9]]*$//' 2> /dev/null`
if test -z "$CXX_STANDARD"; then
2016-11-05 16:40:16 +01:00
CXX_STANDARD="unknown"
2016-10-14 13:50:03 +02:00
fi
AC_MSG_RESULT([$CXX_STANDARD])
2010-07-07 18:42:45 +00:00
# Linker options
2014-08-14 18:30:48 +02:00
# check -R, "-Wl,-R" or -rpath
2012-10-31 15:57:26 -07:00
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.
2014-08-12 13:11:38 +02:00
# We also use a separate variable KEA_CXXFLAGS. This will (and should) be
2012-10-07 23:53:26 -07:00
# used as the default value for each specific AM_CXXFLAGS:
2014-08-12 13:11:38 +02:00
# AM_CXXFLAGS = $(KEA_CXXFLAGS)
2012-10-07 23:53:26 -07:00
# 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.
2014-08-12 13:03:33 +02:00
AC_DEFUN([KEA_CXX_TRY_FLAG], [
2012-10-07 23:53:26 -07:00
AC_MSG_CHECKING([whether $CXX supports $1])
2014-08-12 13:03:33 +02:00
kea_save_CXXFLAGS="$CXXFLAGS"
2016-07-02 11:00:26 +02:00
CXXFLAGS="$CXXFLAGS -Werror $1"
2012-10-07 23:53:26 -07:00
2016-07-02 11:00:26 +02:00
AC_LINK_IFELSE([AC_LANG_SOURCE([int main(){ return 0;}])],
2014-08-12 13:03:33 +02:00
[kea_cxx_flag=yes], [kea_cxx_flag=no])
CXXFLAGS="$kea_save_CXXFLAGS"
2012-10-07 23:53:26 -07:00
2014-08-12 13:03:33 +02:00
if test "x$kea_cxx_flag" = "xyes"; then
2012-10-07 23:53:26 -07:00
ifelse([$2], , :, [$2])
else
ifelse([$3], , :, [$3])
fi
2014-08-12 13:03:33 +02:00
AC_MSG_RESULT([$kea_cxx_flag])
2012-10-07 23:53:26 -07:00
])
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
2023-06-27 14:52:50 +00:00
# (https://web.archive.org/web/20100103115135/http://blogs.sun.com/sga/entry/boost_mini_howto)
2012-10-07 23:53:26 -07:00
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"
2015-10-15 23:07:15 +02:00
KEA_CXXFLAGS="$KEA_CXXFLAGS -mt"
2012-10-07 23:53:26 -07:00
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.
2016-07-02 11:00:26 +02:00
if test "X$CLANGPP" = "Xyes"; then
2013-09-12 15:45:08 +02:00
CXX_VERSION=`$CXX --version 2> /dev/null | head -1`
2014-08-12 13:11:38 +02:00
KEA_CXXFLAGS="$KEA_CXXFLAGS -Qunused-arguments"
2012-10-07 23:53:26 -07:00
fi
2021-01-16 10:17:20 +02:00
# Comparison function based on the sort command that works with decimal numbers
# in a portable manner to the detriment of expr, test and most other commands.
less_than() {
# Equal means not less than.
if test "${1}" = "${2}"; then
return 1
fi
# Sort numerically, check the first item against ${1}.
if test "$(printf '%s\n%s\n' "${1}" "${2}" | sort -V | head -n 1)" = "${1}"; then
return 0
fi
# ${2} is smaller than ${1}.
return 1
}
2016-07-02 11:00:26 +02:00
# gcc/clang specific settings:
2012-10-07 23:53:26 -07:00
if test "X$GXX" = "Xyes"; then
2013-09-12 15:45:08 +02:00
CXX_VERSION=`$CXX --version 2> /dev/null | head -1`
2014-08-12 13:11:38 +02:00
KEA_CXXFLAGS="$KEA_CXXFLAGS -Wall -Wextra -Wnon-virtual-dtor -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare"
2015-12-01 18:03:46 +01:00
# gcc 4.4 would emit warnings about breaking strict aliasing rules.
# See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=41874
CXX_DUMP_VERSION=`$CXX -dumpversion | cut -f1-2 -d.`
2021-01-16 10:17:20 +02:00
if less_than "$CXX_DUMP_VERSION" "4.5"; then
2015-12-01 18:03:46 +01:00
WARNING_GCC_44_STRICT_ALIASING_CFLAG="-fno-strict-aliasing"
fi
AC_SUBST(WARNING_GCC_44_STRICT_ALIASING_CFLAG)
2021-01-16 10:17:20 +02:00
CPPP="$CXXCPP"
2015-12-15 23:48:27 +01:00
# gcc 5 preprocessor requires -P for checking its output
2021-01-16 10:17:20 +02:00
if less_than "5" "$CXX_DUMP_VERSION"; then
CPPP="$CPPP -P"
2015-12-15 23:48:27 +01:00
fi
2015-12-01 18:03:46 +01:00
2012-10-07 23:53:26 -07:00
case "$host" in
*-solaris*)
2016-11-05 16:40:16 +01:00
MULTITHREADING_FLAG=-pthreads
# In Solaris, IN6ADDR_ANY_INIT and IN6ADDR_LOOPBACK_INIT need -Wno-missing-braces
KEA_CXXFLAGS="$KEA_CXXFLAGS -Wno-missing-braces"
;;
2014-10-28 17:24:16 +01:00
*-apple-darwin*)
2016-11-05 16:40:16 +01:00
MULTITHREADING_FLAG=
;;
2012-10-07 23:53:26 -07:00
*)
2016-11-05 16:40:16 +01:00
MULTITHREADING_FLAG=-pthread
;;
2012-10-07 23:53:26 -07:00
esac
2015-11-03 07:10:38 +01:00
KEA_CXXFLAGS="$KEA_CXXFLAGS $MULTITHREADING_FLAG"
2012-10-07 23:53:26 -07:00
2020-04-11 17:40:26 +02:00
dumpmachine=`$CXX -dumpmachine`
case "$dumpmachine" in
*-musl)
2020-07-09 10:00:16 +02:00
AC_MSG_WARN("Detected musl libc: musl dlclose() is a noop")
2020-04-11 17:40:26 +02:00
AC_DEFINE([LIBC_MUSL], [1], [Define to 1 if libc is musl])
;;
esac
2016-08-08 14:52:08 +01:00
# Disable -Werror by default. Only use it if specifically enabled.
# The usage of this flag is:
#
2016-08-10 22:58:33 -07:00
# No flag: -Werror is disabled
# --with-werror: -Werror is enabled
# --with-werror=yes: -Werror is enabled
# --with-werror=no: -Werror is disabled
# --with-werror=value -Werror is enabled and "value" is included in the compiler flags
2016-08-08 14:52:08 +01:00
#
# In the last case, "value" may be one or more compiler flags, e.g.
# --with-werror=-Wundef
2016-08-10 22:58:33 -07:00
# --with-werror='-Wundef -Wconversion'
2016-08-08 14:52:08 +01:00
2016-07-02 11:00:26 +02:00
werror_extras=
2012-10-07 23:53:26 -07:00
AC_ARG_WITH(werror,
2022-01-10 16:04:56 +01:00
[AS_HELP_STRING([--with-werror],[Compile using -Werror (default=no)])],
2012-10-07 23:53:26 -07:00
[
case "${withval}" in
yes) with_werror=1 ;;
no) with_werror=0 ;;
2016-07-02 11:00:26 +02:00
-*) with_werror=1; werror_extras=${withval} ;;
2016-11-05 16:40:16 +01:00
*) AC_MSG_ERROR(bad value ${withval} for --with-werror) ;;
2012-10-07 23:53:26 -07:00
esac],
2016-08-08 14:52:08 +01:00
[with_werror=0])
2012-10-07 23:53:26 -07:00
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"
2014-08-12 13:11:38 +02:00
CXXFLAGS="$CXXFLAGS $KEA_CXXFLAGS -Werror"
2012-10-07 23:53:26 -07:00
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.
2021-01-04 15:47:04 +02:00
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([[
namespace { struct Foo {}; }
namespace isc { struct Bar { Foo foo_; }; }
]], [[]])],
[AC_MSG_RESULT(no)
werror_ok=1
KEA_CXXFLAGS="$KEA_CXXFLAGS -Werror"],
[AC_MSG_RESULT(yes)]
)
2012-10-07 23:53:26 -07:00
CXXFLAGS="$CXXFLAGS_SAVED"
fi
2016-07-02 11:00:26 +02:00
# Added flags after -Werror
# Some versions of GCC warn about some versions of Boost regarding
# missing initializer for members in its posix_time.
2023-06-27 14:59:39 +00:00
# https://web.archive.org/web/20150911093559/https://svn.boost.org/trac/boost/ticket/3477
2016-07-02 11:00:26 +02:00
# But older GCC compilers don't have the flag.
KEA_CXX_TRY_FLAG([-Wno-missing-field-initializers],
2016-11-05 16:40:16 +01:00
[KEA_CXXFLAGS="$KEA_CXXFLAGS -Wno-missing-field-initializers"])
2016-07-02 11:00:26 +02:00
if test "X$CLANGPP" = "Xyes"; then
2016-11-05 16:40:16 +01:00
# This is to workaround unused variables tcout and tcerr in
# log4cplus's streams.h and unused parameters from some of the
# Boost headers.
KEA_CXXFLAGS="$KEA_CXXFLAGS -Wno-unused-variable -Wno-unused-parameter"
2016-07-02 11:00:26 +02:00
fi
# Add the extras at the very last
# Note it can be used to re-enable a (fatal) warning
for extra in $werror_extras; do
2016-11-05 16:40:16 +01:00
KEA_CXX_TRY_FLAG([$extra],
[KEA_CXXFLAGS="$KEA_CXXFLAGS $extra"],
[AC_MSG_ERROR([$CXX does not support $extra"])])
2016-07-02 11:00:26 +02:00
done
2024-08-13 13:45:25 +03:00
fi # if test "X$GXX" = "Xyes"
2012-10-10 11:02:24 -07:00
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],
2021-01-04 15:47:04 +02:00
[AS_HELP_STRING([--enable-static-link],
[build programs with static link [[default=no]]])],
2010-08-13 23:22:54 +00:00
[enable_static_link=yes], [enable_static_link=no])
AM_CONDITIONAL(USE_STATIC_LINK, test $enable_static_link = yes)
2014-08-06 12:51:57 +02:00
AM_COND_IF([USE_STATIC_LINK], [AC_DEFINE([USE_STATIC_LINK], [1], [Was Kea 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
2016-11-05 16:40:16 +01:00
AC_MSG_ERROR([--enable-static-link requires --enable-static])
2010-09-20 03:20:56 +00:00
fi
2015-09-19 13:25:24 +02:00
if test $enable_static_link = no -a $enable_shared = no; then
2016-11-05 16:40:16 +01:00
AC_MSG_ERROR([--disable-static-link requires --enable-shared])
2010-09-20 03:20:56 +00:00
fi
2010-08-18 20:51:43 +00:00
# OS dependent configuration
2014-08-12 13:03:33 +02:00
kea_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*)
2016-11-05 16:40:16 +01:00
# 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__"
# "now" binding is necessary to prevent deadlocks in C++ static initialization code
LDFLAGS="$LDFLAGS -z now"
# Destroying locked mutexes, condition variables being waited
# on, etc. are undefined behavior on Solaris, so we set it as
# such here.
kea_undefined_pthread_behavior=yes
;;
2010-08-18 20:51:43 +00:00
*-apple-darwin*)
2016-11-05 16:40:16 +01: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"
# 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.
AC_MSG_CHECKING([OS X versions where destroying locked locks do not fail])
2021-01-04 15:47:04 +02:00
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([[
#include <Availability.h>
]], [[
#ifdef __MAC_OS_X_VERSION_MIN_REQUIRED
#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090
#error " OS X >= 10.9"
#endif
#endif
return 1;
]])],
[AC_MSG_RESULT([OS X < 10.9])],
[AC_MSG_RESULT([OS X >= 10.9])
kea_undefined_pthread_behavior=yes])
2016-11-05 16:40:16 +01:00
;;
2011-11-11 15:56:54 +01:00
*-freebsd*)
2016-11-05 16:40:16 +01:00
# On FreeBSD10.1 pthread_cond_destroy doesn't work as documented, which
# causes the CondVarTest.destroyWhileWait test to fail. According to the
# pthread_cond_destroy documentation for FreeBSD, this function should
# return EBUSY error when there is a thread waiting for the conditional
# variable, whereas this function returned success code. We treat it here
# as an undefined behavior. Also note that this issue was only visible
# when gtest 1.7 was in use, because the previous versions of gtest
# didn't seem to have support for the death tests on FreeBSD. As a
# result, the test was not executed and the error didn't occur.
kea_undefined_pthread_behavior=yes
;;
2010-06-23 06:25:14 +00:00
esac
2014-08-12 13:03:33 +02:00
if [ test $kea_undefined_pthread_behavior = "yes" ]; then
2013-10-28 00:09:54 -07:00
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)
2016-11-05 16:40:16 +01:00
AC_DEFINE([HAVE_BROKEN_GET_IPV6_USE_MIN_MTU], [1],
[Define to 1 if getsockopt(IPV6_USE_MIN_MTU) does not work])
;;
2013-02-01 14:43:54 -08:00
esac
2019-02-04 15:50:01 +01:00
# Made perfdhcp optional.
2021-01-04 15:47:04 +02:00
AC_ARG_ENABLE(perfdhcp, [AS_HELP_STRING([--enable-perfdhcp],
[enable perfdhcp, a DHCP benchmarking tool [default=no]])],
enable_perfdhcp=$enableval, enable_perfdhcp=no)
2019-02-04 15:50:01 +01:00
2019-02-04 16:01:40 +01:00
DISTCHECK_PERFDHCP_CONFIGURE_FLAG=
2019-02-04 15:50:01 +01:00
if test "x$enable_perfdhcp" != xno ; then
2019-02-04 16:01:40 +01:00
DISTCHECK_PERFDHCP_CONFIGURE_FLAG="--enable-perfdhcp"
2019-02-04 15:50:01 +01:00
fi
# Export to makefiles the info whether we have perfdhcp enabled or not
AM_CONDITIONAL(PERFDHCP, test x$enable_perfdhcp != xno)
2019-02-04 16:01:40 +01:00
AC_SUBST(DISTCHECK_PERFDHCP_CONFIGURE_FLAG)
2019-02-04 15:50:01 +01:00
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
2014-08-12 13:11:38 +02:00
KEA_CXXFLAGS="$KEA_CXXFLAGS -fPIC"
2010-01-26 22:15:42 +00:00
fi
2017-07-25 14:00:33 -04:00
# Look for glib static libs if they're trying to do static builds
2017-07-27 09:46:21 -04:00
if test $enable_static_link != "no"; then
2017-07-25 14:00:33 -04:00
CXX_SAVED=$CXX
CXX="$CXX -static"
AC_LINK_IFELSE(
2017-07-26 11:15:35 -04:00
[AC_LANG_PROGRAM([#include <math.h>],[(void)sqrt(-1.0);])],
2017-07-25 14:00:33 -04:00
[AC_MSG_RESULT([checking for static glib libraries... yes])],
[AC_MSG_RESULT([checking for static glib libraries... no])
2017-07-27 09:46:21 -04:00
AC_MSG_ERROR([Building with --enable-static-link does not work. You appear to be missing glib static libraries. Check config.log for details.])])
2017-07-25 14:00:33 -04:00
CXX=$CXX_SAVED
fi
2017-03-07 22:45:17 +01:00
2014-08-12 13:11:38 +02:00
AC_SUBST(KEA_CXXFLAGS)
2010-05-28 00:42:50 +00:00
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
2020-05-25 11:44:57 +02:00
AC_TYPE_SSIZE_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)
2015-02-27 14:36:24 +01:00
AC_MSG_CHECKING(OS type)
2015-02-27 17:28:21 +01:00
BSD_TYPE="notaBSD"
2015-02-27 14:36:24 +01:00
case $host in
*-linux*)
AC_DEFINE([OS_LINUX], [1], [Running on Linux?])
2011-12-16 18:45:13 +01:00
OS_TYPE="Linux"
2011-11-30 17:00:42 +01:00
CPPFLAGS="$CPPFLAGS -DOS_LINUX"
;;
2015-02-27 14:36:24 +01:00
*-apple-darwin*)
AC_DEFINE([OS_BSD], [1], [Running on BSD?])
AC_DEFINE([OS_OSX], [1], [Running on OSX?])
OS_TYPE="BSD"
BSD_TYPE="OSX"
CPPFLAGS="$CPPFLAGS -DOS_BSD"
;;
*-freebsd*)
AC_DEFINE([OS_BSD], [1], [Running on BSD?])
AC_DEFINE([OS_FREEBSD], [1], [Running on FreeBSD?])
OS_TYPE="BSD"
BSD_TYPE="FreeBSD"
CPPFLAGS="$CPPFLAGS -DOS_BSD"
;;
*-netbsd*)
AC_DEFINE([OS_BSD], [1], [Running on BSD?])
AC_DEFINE([OS_NETBSD], [1], [Running on NetBSD?])
OS_TYPE="BSD"
BSD_TYPE="NetBSD"
CPPFLAGS="$CPPFLAGS -DOS_BSD"
;;
*-openbsd*)
AC_DEFINE([OS_BSD], [1], [Running on BSD?])
AC_DEFINE([OS_OPENBSD], [1], [Running on OpenBSD?])
2011-11-30 17:00:42 +01:00
OS_TYPE="BSD"
2015-02-27 14:36:24 +01:00
BSD_TYPE="OpenBSD"
2011-11-30 17:00:42 +01:00
CPPFLAGS="$CPPFLAGS -DOS_BSD"
;;
2015-02-27 14:36:24 +01:00
*-solaris*)
AC_DEFINE([OS_SOLARIS], [1], [Running on Solaris?])
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"
2015-02-27 14:36:24 +01:00
# $host_os is more user friendly than full $host
AC_MSG_WARN("Unsupported OS: $host_os")
2011-11-30 17:00:42 +01:00
;;
esac
AC_MSG_RESULT($OS_TYPE)
2011-12-16 18:45:13 +01:00
AM_CONDITIONAL(OS_LINUX, test $OS_TYPE = Linux)
2011-11-30 17:00:42 +01:00
AM_CONDITIONAL(OS_BSD, test $OS_TYPE = BSD)
AM_CONDITIONAL(OS_SOLARIS, test $OS_TYPE = Solaris)
2015-02-27 14:36:24 +01:00
AM_CONDITIONAL(OS_OSX, test $BSD_TYPE = OSX)
AM_CONDITIONAL(OS_FREEBSD, test $BSD_TYPE = FreeBSD)
AM_CONDITIONAL(OS_NETBSD, test $BSD_TYPE = NetBSD)
AM_CONDITIONAL(OS_OPENBSD, test $BSD_TYPE = OpenBSD)
2013-07-10 00:43:01 +01:00
2009-10-30 17:47:35 +00:00
AC_MSG_CHECKING(for sa_len in struct sockaddr)
2021-01-04 15:47:04 +02:00
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([[
#include <sys/types.h>
#include <sys/socket.h>
]], [[
struct sockaddr sa;
sa.sa_len = 0;
return (0);
]])],
[AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_SA_LEN, 1, [Define to 1 if sockaddr has a sa_len member, and corresponding sin_len and sun_len])],
[AC_MSG_RESULT(no)]
)
2009-10-30 17:47:35 +00:00
2020-05-08 13:06:17 +02:00
usable_regex=
2023-07-18 18:29:12 +02:00
AC_MSG_CHECKING(for usable C++11 regex)
2021-01-04 15:46:21 +02:00
AC_RUN_IFELSE([AC_LANG_SOURCE([[
2018-07-06 13:14:05 -04:00
#include <regex>
#include <iostream>
int main() {
const std::regex regex(".*");
const std::string string = "This should match!";
const auto result = std::regex_search(string, regex);
return result ? EXIT_SUCCESS : EXIT_FAILURE;
2021-01-04 15:47:04 +02:00
}]])],
[AC_MSG_RESULT(yes)
usable_regex="yes"],
[AC_MSG_RESULT(no)
usable_regex="no"],
[AC_MSG_RESULT(cross compiling)])
2020-05-22 19:02:18 +02:00
# When cross-compiling we don't have any way to check if regex is
# usable or not.
# Let's be optimistic and assume it is by testing only the negative case.
2024-03-04 11:49:45 +02:00
if test "${usable_regex}" = 'no'; then
AC_MSG_ERROR([Need proper regex functionality.])]
2020-05-08 13:06:17 +02:00
fi
2018-07-06 13:14:05 -04:00
2022-10-12 19:57:14 +03:00
# Check for NETCONF support. If NETCONF was enabled in the build, and this check
# passes, it will enforce the --std=c++20 flag. Let's do the check as early as
# possible so that the rest of the checks include the flag as well.
AX_NETCONF
2019-11-19 02:26:16 +08:00
# Run the gtest detection routines. This supports --with-gtest and --with-gtest-source
# parameters. If specified, those will set the HAVE_GTEST, HAVE_GTEST_SOURCE,
# DISTCHECK_GTEST_CONFIGURE_FLAG, GTEST_INCLUDES, GTEST_LDFLAGS, GTEST_LDADD, GTEST_SOURCE
# variables.
AX_ISC_GTEST
2009-12-29 16:07:20 +00:00
2017-09-23 07:12:30 -04:00
# Sets up for use of botan unless openssl is specified
# sets variables CRYPTO_*
AX_CRYPTO
2012-10-22 20:05:35 +01:00
2018-04-23 11:22:07 +01:00
# List of directories, where tools like mysql_config or pgsql_config will be
# searched for
defaultdirs="/usr /usr/local /usr/pkg /opt /opt/local"
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"
2016-12-14 16:58:39 +02:00
AC_ARG_WITH([mysql],
2022-01-10 16:04:56 +01:00
[AS_HELP_STRING([--with-mysql[[=PATH]]],
[path to the MySQL 'mysql_config' script (MySQL is used for the DHCP database)])],
2021-01-04 15:47:04 +02:00
[mysql_config="$withval"])
2012-10-22 20:05:35 +01:00
2018-04-10 07:23:18 -04:00
deprec_msg="no"
AC_ARG_WITH([dhcp-mysql],,
[mysql_config="$withval";deprec_msg="yes"])
if test "${deprec_msg}" = "yes" ; then
AC_MSG_WARN([--with-dhcp-mysql has been deprecated, please use --with-mysql])
fi
2012-10-22 20:05:35 +01:00
if test "${mysql_config}" = "yes" ; then
2018-12-29 10:17:26 +01:00
MYSQL_CONFIG="/usr/bin/mysql_config"
2018-04-23 11:22:07 +01:00
for d in $defaultdirs
do
if test -f $d/bin/mysql_config; then
MYSQL_CONFIG="$d/bin/mysql_config"
break
fi
done
2012-10-22 20:05:35 +01:00
elif test "${mysql_config}" != "no" ; then
MYSQL_CONFIG="${withval}"
fi
2022-05-30 19:02:18 +03:00
DISTCHECK_MYSQL_CONFIGURE_FLAG=
2012-10-22 20:05:35 +01:00
if test "$MYSQL_CONFIG" != "" ; then
2012-10-24 14:12:06 +01:00
if test -d "$MYSQL_CONFIG" -o ! -x "$MYSQL_CONFIG" ; then
2019-01-29 10:42:39 +01:00
AC_MSG_ERROR([MySQL dependencies cannot be found. Please install MySQL libraries or point --with-mysql to mysql_config program if it is located in non-default directory, eg. --with-mysql=/opt/mysql/bin/mysql_config.])
2012-10-22 20:05:35 +01:00
fi
2022-05-30 19:02:18 +03:00
DISTCHECK_MYSQL_CONFIGURE_FLAG="--with-mysql=$MYSQL_CONFIG"
2012-10-22 20:05:35 +01:00
MYSQL_CPPFLAGS=`$MYSQL_CONFIG --cflags`
MYSQL_LIBS=`$MYSQL_CONFIG --libs`
2019-04-19 13:50:24 +03:00
MYSQL_LIBS="$MYSQL_LIBS $CRYPTO_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)
2022-05-30 19:02:18 +03:00
AC_SUBST(DISTCHECK_MYSQL_CONFIGURE_FLAG)
2012-10-22 20:05:35 +01:00
# 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(
2018-12-21 16:59:47 +01:00
[AC_LANG_PROGRAM([#include <mysql.h>],
[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])]
2012-10-22 20:05:35 +01:00
)
2018-12-21 16:59:47 +01:00
# Note that MYSQL is present in the config.h file
AC_DEFINE([HAVE_MYSQL], [1], [MySQL is present])
2023-01-20 22:41:53 +02:00
# Check if my_bool is defined.
2018-12-21 16:59:47 +01:00
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([#include <mysql.h>
const my_bool MLM_FALSE = 0;]
[])],
[AC_MSG_RESULT([checking for MySQL my_bool... yes])
AC_DEFINE([HAVE_MYSQL_MY_BOOL], [1], [MySQL uses my_bool])],
[AC_MSG_RESULT([checking for MySQL my_bool... no])])
2023-01-20 22:41:53 +02:00
# Check if mysql_get_option is defined.
AC_MSG_CHECKING([for MySQL mysql_get_option])
AC_LINK_IFELSE(
[AC_LANG_PROGRAM(
[#include <mysql.h>],
[MYSQL handle;
unsigned int timeout;
mysql_get_option(&handle, MYSQL_OPT_CONNECT_TIMEOUT, &timeout);]
)],
[AC_MSG_RESULT([yes])
AC_DEFINE([HAVE_MYSQL_GET_OPTION], [true], [MySQL has mysql_get_option defined.])],
[AC_MSG_RESULT([no])
AC_MSG_WARN([mysql_get_option program failed to build:
$(cat conftest.cpp)
$(cat conftest.err)])]
)
2024-05-10 14:58:09 +00:00
# Beginning with MySQL 8.0.34 MYSQL_OPT_RECONNNECT is deprecated.
# Check if MYSQL_OPT_RECONNNECT is defined.
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([#include <mysql.h>
auto temp = MYSQL_OPT_RECONNECT;]
[])],
[AC_MSG_RESULT([checking for MySQL MYSQL_OPT_RECONNNECT... yes])
AC_DEFINE([HAVE_MYSQL_OPT_RECONNECT], [1], [MySQL has MYSQL_OPT_RECONNNECT])],
[AC_MSG_RESULT([checking for MySQL MYSQL_OPT_RECONNECT... no])])
2012-10-22 20:05:35 +01:00
CPPFLAGS=$CPPFLAGS_SAVED
LIBS=$LIBS_SAVED
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"
2016-12-14 16:58:39 +02:00
AC_ARG_WITH([pgsql],
2022-01-10 16:04:56 +01:00
[AS_HELP_STRING([--with-pgsql[[=PATH]]],
[path to the PostgreSQL 'pg_config' script])],
2021-01-04 15:47:04 +02:00
[pg_config="$withval"])
2014-03-11 15:42:26 +01:00
2018-04-10 07:23:18 -04:00
deprec_msg="no"
AC_ARG_WITH([dhcp-pgsql],,
[pg_config="$withval";deprec_msg="yes"])
if test "${deprec_msg}" = "yes" ; then
AC_MSG_WARN([--with-dhcp-pgsql has been deprecated, please use --with-pgsql])
fi
2014-03-11 15:42:26 +01:00
if test "${pg_config}" = "yes" ; then
2018-12-29 10:27:26 +01:00
PG_CONFIG="/usr/bin/pg_config"
2018-04-23 11:22:07 +01:00
for d in $defaultdirs
do
if test -f $d/bin/pg_config; then
PG_CONFIG="$d/bin/pg_config"
break
fi
done
2014-03-11 15:42:26 +01:00
elif test "${pg_config}" != "no" ; then
PG_CONFIG="${withval}"
fi
2022-05-30 19:02:18 +03:00
DISTCHECK_PGSQL_CONFIGURE_FLAG=
2014-03-11 15:42:26 +01:00
if test "$PG_CONFIG" != "" ; then
if test -d "$PG_CONFIG" -o ! -x "$PG_CONFIG" ; then
2019-01-29 10:54:20 +01:00
AC_MSG_ERROR([PostgreSQL dependencies cannot be found. Please install PostgreSQL libraries or point --with-pgsql to pg_config program if it is located in non-default directory, eg. --with-pgsql=/opt/pgsql/bin/pg_config.])
2014-03-11 15:42:26 +01:00
fi
2022-05-30 19:02:18 +03:00
DISTCHECK_PGSQL_CONFIGURE_FLAG="--with-pgsql=$PG_CONFIG"
2014-03-11 15:42:26 +01:00
PGSQL_CPPFLAGS=`$PG_CONFIG --cppflags`
PGSQL_INCLUDEDIR=`$PG_CONFIG --includedir`
2014-05-19 16:49:11 +02:00
PGSQL_INCLUDEDIR_SERVER=`$PG_CONFIG --includedir-server`
PGSQL_CPPFLAGS="$PGSQL_CPPFLAGS -I$PGSQL_INCLUDEDIR -I$PGSQL_INCLUDEDIR_SERVER"
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`
2023-02-05 21:51:56 +01:00
PGSQL_MAJOR_VERSION=`$PG_CONFIG --version | cut -f2 -d' ' | cut -f1 -d'.'`
2014-03-11 15:42:26 +01:00
AC_SUBST(PGSQL_CPPFLAGS)
AC_SUBST(PGSQL_LIBS)
2022-05-30 19:02:18 +03:00
AC_SUBST(DISTCHECK_PGSQL_CONFIGURE_FLAG)
2014-03-11 15:42:26 +01:00
# 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])]
)
2014-12-29 16:09:12 +01:00
AC_CHECK_HEADERS([utils/errcodes.h],,
2015-01-05 14:35:44 +01:00
AC_MSG_ERROR([Missing required header file (errcodes.h) from PostgreSQL server-development package]))
2014-12-29 16:09:12 +01:00
2014-03-11 15:42:26 +01:00
CPPFLAGS=$CPPFLAGS_SAVED
LIBS=$LIBS_SAVED
# Note that PostgreSQL is present in the config.h file
AC_DEFINE([HAVE_PGSQL], [1], [PostgreSQL is present])
2023-02-05 21:51:56 +01:00
if test $PGSQL_MAJOR_VERSION -ge 12; then
AC_DEFINE([HAVE_PGSQL_TCP_USER_TIMEOUT], [1], [PostgreSQL connection parameter tcp_user_timeout supported])
fi
2014-03-11 15:42:26 +01:00
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
2021-11-29 16:29:22 +01:00
# allow building kea programs with a PostgreSQL without OpenSSL.
AC_ARG_ENABLE([pgsql-ssl],
[AS_HELP_STRING([--enable-pgsql-ssl],
[enable OpenSSL support in PostgreSQL [default=yes]])],
2021-12-06 17:11:24 +01:00
[pgsql_ssl=$enableval], [pgsql_ssl=no], [pgsql_ssl=yes])
if test "${pgsql_ssl}" = "yes"; then
AC_DEFINE([HAVE_PGSQL_SSL], [1], [PostgreSQL was built with OpenSSL support])
fi
2021-11-29 16:29:22 +01:00
2011-05-19 13:52:58 +01:00
# Check for log4cplus
2017-09-29 17:37:14 +02:00
DISTCHECK_LOG4CPLUS_CONFIGURE_FLAG=
2011-05-19 13:52:58 +01:00
log4cplus_path="yes"
AC_ARG_WITH([log4cplus],
2021-07-28 11:48:28 +03:00
[AS_HELP_STRING([--with-log4cplus[[=PATH]]],
[optional path to the log4cplus installation directory])],
[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
2017-09-29 17:37:14 +02:00
DISTCHECK_LOG4CPLUS_CONFIGURE_FLAG="-with-log4cplus=${log4cplus_path}"
2011-05-19 13:52:58 +01:00
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.
2018-04-23 11:22:07 +01:00
for d in $defaultdirs
2016-11-05 16:40:16 +01:00
do
if test -f $d/include/log4cplus/logger.h; then
LOG4CPLUS_INCLUDES="-I$d/include"
2018-12-29 09:49:31 +01:00
LOG4CPLUS_LIBS="-L$d/lib"
if test -d $d/lib64; then
LOG4CPLUS_LIBS="$LOG4CPLUS_LIBS -L$d/lib64"
fi
2016-11-05 16:40:16 +01:00
break
fi
done
2018-12-29 09:49:31 +01:00
DISTCHECK_LOG4CPLUS_CONFIGURE_FLAG="-with-log4cplus"
2011-05-19 13:52:58 +01:00
fi
2015-10-15 23:07:15 +02:00
LOG4CPLUS_LIBS="$LOG4CPLUS_LIBS -llog4cplus"
2011-05-19 13:52:58 +01:00
2017-09-29 17:37:14 +02:00
AC_SUBST(DISTCHECK_LOG4CPLUS_CONFIGURE_FLAG)
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"
2015-10-15 23:07:15 +02:00
LIBS="$LOG4CPLUS_LIBS $MULTITHREADING_FLAG $LIBS"
2011-05-19 13:52:58 +01:00
2020-11-12 12:18:02 +02:00
AC_CHECK_HEADERS([log4cplus/logger.h],,
AC_MSG_ERROR([Missing required header file (logger.h) from the log4cplus package]))
2011-05-19 13:52:58 +01:00
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
2021-04-01 21:53:06 +02:00
# The tabulation below is NOT an error: PLEASE keep it.
2021-04-01 21:48:02 +02:00
LOG4CPLUS_VERSION=`$CPPP $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
2019-08-15 20:41:24 +02:00
# Older log4cplus versions (1.2.0) don't have the initializer.h header that
# would allow explicit initialization. Newer versions (2.0.4 for sure, possibly
# older as well) have it and it's recommended to use it. We detect whether
2021-01-22 01:36:41 +02:00
# it's present or not and do explicit initialization if possible.
2019-08-15 21:36:15 +02:00
CPPFLAGS_SAVED=$CPPFLAGS
CPPFLAGS="$LOG4CPLUS_INCLUDES $CPPFLAGS"
2019-08-15 20:41:24 +02:00
LIBS_SAVED="$LIBS"
LIBS="$LOG4CPLUS_LIBS $LIBS"
2019-08-15 18:50:57 +02:00
AC_MSG_CHECKING([log4cplus explicit initialization (log4cplus/initializer.h)])
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([#include <log4cplus/initializer.h>],
[log4cplus::Initializer initializer;]
)],
[AC_MSG_RESULT([yes])
AC_DEFINE(LOG4CPLUS_INITIALIZER_H, [1], [Explicit initialization of log4cplus possible])],
[AC_MSG_RESULT(no)])
2019-08-15 20:41:24 +02:00
LIBS="$LIBS_SAVED"
2019-08-15 21:36:15 +02:00
CPPFLAGS=$CPPFLAGS_SAVED
2019-08-15 18:50:57 +02:00
2010-09-23 08:37:43 +00:00
#
# Configure Boost header path
#
2014-08-12 13:09:33 +02:00
AX_BOOST_FOR_KEA
2012-12-27 17:54:42 -08:00
# Boost offset_ptr is required in one library and not optional right now, so
# we unconditionally fail here if it doesn't work.
2016-07-02 11:00:26 +02:00
if test "$BOOST_OFFSET_PTR_WOULDFAIL" = "yes" -a X"$werror_ok" = X1; 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
# 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
2015-06-17 22:08:26 +02:00
# Can be required by gtest, boost and perhaps still asio
2015-10-15 23:07:15 +02:00
AC_CHECK_LIB(pthread, pthread_create,[ LDFLAGS="$LDFLAGS -lpthread" ], [])
2011-02-23 19:01:11 +01:00
2021-03-13 23:06:32 +01:00
# Now that Crypto backend and Boost were done we can address TLS.
AX_TLS
2009-10-17 00:14:33 +00:00
2016-10-17 17:53:45 +02:00
#
2023-07-18 18:29:12 +02:00
# Some Googletest versions bug with >= C++11 compilers
2016-10-17 17:53:45 +02:00
#
if test $enable_gtest != "no"; then
AC_MSG_CHECKING([if Google Test is compatible with the compiler])
CPPFLAGS_SAVED=$CPPFLAGS
2016-10-31 13:09:06 +01:00
CPPFLAGS="$CPPFLAGS $BOOST_INCLUDES $GTEST_INCLUDES"
2016-10-17 17:53:45 +02:00
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
2018-02-16 11:51:51 +02:00
[#include <boost/shared_ptr.hpp>
#include <gtest/gtest.h>
void foo() {
boost::shared_ptr<int> bar;
ASSERT_TRUE(bar);
2016-10-17 17:53:45 +02:00
}],
2018-02-16 11:51:51 +02:00
[return 0;])],
[AC_MSG_RESULT(yes)],
[AC_MSG_ERROR([XXX_TRUE() Google Test macros won't compile; the most likely reason is that a later version of Google Test is required])])
2016-10-17 17:53:45 +02:00
CPPFLAGS=$CPPFLAGS_SAVED
fi
2017-07-14 14:04:21 -04:00
2017-03-05 09:03:09 +01:00
# Check for CreateUnifiedDiff from gtest >= 1.8.0
if test $enable_gtest != "no"; then
AC_MSG_CHECKING([for CreateUnifiedDiff in $GTEST_INCLUDES/gtest.h])
CPPFLAGS_SAVED=$CPPFLAGS
CPPFLAGS="$CPPFLAGS $BOOST_INCLUDES $GTEST_INCLUDES"
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
2018-02-16 11:51:51 +02:00
[#include <boost/algorithm/string.hpp>
#include <gtest/gtest.h>
#include <string>
#include <vector>
std::string nodiff(std::string text) {
std::vector<std::string> lines;
boost::split(lines, text, boost::is_any_of("\n"));
using namespace testing::internal;
return (edit_distance::CreateUnifiedDiff(lines, lines));
}],
[return 0;])],
[AC_MSG_RESULT(yes)
AC_DEFINE([HAVE_CREATE_UNIFIED_DIFF], [1],
[Define to 1 if gtest defines edit_distance::CreateUnifiedDiff])],
[AC_MSG_RESULT(no)])
2017-03-05 09:03:09 +01:00
CPPFLAGS=$CPPFLAGS_SAVED
2017-07-14 14:04:21 -04:00
fi
2017-03-05 09:03:09 +01:00
2021-04-23 20:09:02 +03:00
# Provide the ability to include our coroutine header or other headers from ext.
2021-04-20 11:04:56 +03:00
CPPFLAGS="$CPPFLAGS -I\$(top_srcdir) -I\$(top_builddir)"
2018-11-28 17:52:00 +01:00
2015-09-03 20:07:39 +02:00
# Doesn't seem to be required?
2019-06-22 11:38:55 -04:00
#CPPFLAGS="$CPPFLAGS -DBOOST_ASIO_HEADER_ONLY"
2015-09-04 10:42:21 +02:00
#
2015-10-15 23:07:15 +02:00
# Disable threads: they seems to break things on some systems
2018-06-11 15:04:45 +02:00
# As now we use threads in boost ASIO this is commented out...
# CPPFLAGS="$CPPFLAGS -DBOOST_ASIO_DISABLE_THREADS=1"
2015-09-04 10:42:21 +02:00
# We tried to stay header only
if test "x${BOOST_LIBS}" = "x"; then
# Don't want boost system library
CPPFLAGS="$CPPFLAGS -DBOOST_ERROR_CODE_HEADER_ONLY"
# Avoid boost::system::throws multiple defines
CPPFLAGS="$CPPFLAGS -DBOOST_SYSTEM_NO_DEPRECATED"
fi
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
2019-03-14 11:43:47 +01:00
AC_CHECK_FUNCS([pselect])
2012-03-20 00:17:20 +05:30
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
2018-02-16 11:51:51 +02:00
CPPFLAGS="$CPPFLAGS -DBOOST_ASIO_DISABLE_DEV_POLL=1"
2010-05-31 01:05:35 +00:00
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
2021-01-04 15:47:04 +02:00
AC_ARG_ENABLE(generate_messages,
[AS_HELP_STRING([--enable-generate-messages],
[indicates that the messages files will be regenerated. [default=no]])],
2019-02-09 01:47:45 +01:00
enable_generate_messages=$enableval, enable_generate_messages=no)
AM_CONDITIONAL([GENERATE_MESSAGES], [test x$enable_generate_messages != xno])
2019-03-05 14:23:43 +01:00
# cross compiling is not compatible with enable-generate-messages.
if test "$cross_compiling" = "yes"; then
if test "$enable_generate_messages" != "no"; then
AC_MSG_WARN([To build the message compiler is not compatible with cross compiling])
fi
fi
2021-01-04 15:47:04 +02:00
AC_ARG_ENABLE(generate_parser,
[AS_HELP_STRING([--enable-generate-parser],
[indicates that the parsers will be regenerated. This implies that the
bison and flex are required [default=no]])],
enable_generate_parser=$enableval, enable_generate_parser=no)
2015-11-04 22:03:51 +09:00
2017-07-23 11:40:19 -04:00
# Check if flex is available. Flex is not needed for building Kea sources,
2021-04-02 09:17:06 +02:00
# unless you want to regenerate grammars.
# Autoconf 2.70 added an option and warns if not provided,
m4_version_prereq([2.70],
[AC_PROG_LEX(noyywrap)],
[AC_PROG_LEX])
2015-11-04 22:03:51 +09:00
# Check if bison is available. Bison is not needed for building Kea sources,
2017-03-05 09:03:09 +01:00
# unless you want to regenerate grammars
2019-03-06 19:36:35 +01:00
AC_PATH_PROG(YACC, bison)
AC_SUBST(YACC)
2015-11-04 22:03:51 +09:00
2015-11-14 15:23:00 +01:00
if test "x$enable_generate_parser" != "xno"; then
2015-11-04 22:03:51 +09:00
2019-03-06 18:48:21 +01:00
if test "x$LEX" != "xflex"; then
2015-11-14 15:23:00 +01:00
AC_MSG_ERROR([Flex is required for enable-generate-parser, but was not found])
2015-11-04 22:03:51 +09:00
fi
2020-12-03 11:19:15 +02:00
if test "x$YACC" = "x"; then
2015-11-14 15:23:00 +01:00
AC_MSG_ERROR([Bison is required for enable-generate-parser, but was not found])
2015-11-04 22:03:51 +09:00
fi
2021-07-20 13:04:19 +03:00
# Let's check if we have at least 3.3.0 version of the bison. The
# api.parser.class is available with 3.2.91, but let's be safe and offer support
# for minor versions, as opposed to patch versions.
2015-11-04 22:03:51 +09:00
cat > bisontest.y << EOF
2021-07-20 13:04:19 +03:00
%require "3.3.0"
2015-11-04 22:03:51 +09:00
%token X
%%
%start Y;
Y: X;
EOF
# Try to compile.
$YACC bisontest.y -o bisontest.cc
if test $? -ne 0 ; then
$YACC -V
2015-11-05 05:46:24 +01:00
$RM -f bisontest.y bisontest.cc
2021-07-20 13:04:19 +03:00
AC_MSG_ERROR("Error with $YACC. Possibly incorrect version? Required at least 3.3.0.")
2015-11-04 22:03:51 +09:00
fi
2015-11-05 05:46:24 +01:00
$RM -f bisontest.y bisontest.cc
2015-11-04 22:03:51 +09:00
fi
2015-11-14 20:17:01 +01:00
AM_CONDITIONAL([GENERATE_PARSER], [test x$enable_generate_parser != xno])
2023-06-28 17:11:29 +00:00
# Kea-shell is written in python. It can work with any python 3.x version.
2023-06-27 17:28:11 +02:00
# We require python only if kea-shell was enabled. It is disabled by default to
# not introduce hard dependency on python.
2021-01-04 15:47:04 +02:00
AC_ARG_ENABLE(shell,
[AS_HELP_STRING([--enable-shell],
[enable kea-shell, a text management client for Control Agent [default=no]])],
2019-07-26 09:51:32 +02:00
enable_shell=$enableval, enable_shell=no)
2021-01-04 15:47:04 +02:00
AC_ARG_ENABLE(generate_docs,
[AS_HELP_STRING([--enable-generate-docs],
[regenerate documentation using Sphinx [default=no]])],
2012-08-02 20:55:20 -05:00
enable_generate_docs=$enableval, enable_generate_docs=no)
2012-06-01 12:38:13 -07:00
2019-07-26 09:51:32 +02:00
DISTCHECK_KEA_SHELL_CONFIGURE_FLAG=
PKGPYTHONDIR=
2023-01-03 18:37:53 +02:00
PYTHON_PREFIX=
PYTHON_EXEC_PREFIX=
2019-08-13 16:26:14 +02:00
shell_report=no
2019-07-26 09:51:32 +02:00
if test "x$enable_shell" != xno -o "x$enable_generate_docs" != xno; then
2019-08-13 16:26:14 +02:00
2023-01-03 18:37:53 +02:00
# Temporarily replace NONE with the default prefix while --enable-shell is parsed.
2019-07-26 09:51:32 +02:00
saved_prefix="$prefix"
if test "$prefix" = "NONE"; then
prefix=$ac_default_prefix
fi
2023-01-03 18:37:53 +02:00
2023-06-29 10:50:13 +00:00
# If generate_docs is enabled, we really need python. 2.7 or anything newer will do.
# We try to find 3.x first. If not found, we can do with 2.7.
2023-01-03 18:37:53 +02:00
m4_define_default([_AM_PYTHON_INTERPRETER_LIST],
2023-06-29 10:50:13 +00:00
[python3 python python2])
AM_PATH_PYTHON([2.7])
2023-07-25 13:34:49 +03:00
2023-06-29 10:50:13 +00:00
# If kea-shell is enabled, we really need python3
if test "x$enable_shell" != "xno"; then
major=`echo $PYTHON_VERSION | cut -d '.' -f 1`
if test "x$major" != "x3"; then
AC_MSG_ERROR("kea-shell does not support detected python version $PYTHON_VERSION")
fi
fi
2023-01-03 18:37:53 +02:00
# Determine if the --with-site-packages flag was provided.
AC_ARG_WITH(site-packages,
[AS_HELP_STRING([--with-site-packages],
[place to install Kea Python module])],
[with_site_packages="${withval}"])
if test -z "${with_site_packages}"; then
# --with-site-packages not provided. Set a default location explicitly to
# make sure it doesn't change based on external factors. The path resembles
# what python set by default at the time of this writing.
pythondir="${prefix}/lib/python${PYTHON_VERSION}/site-packages"
elif test "${with_site_packages}" = 'yes'; then
# --with-site-packages provided, but without a value. It's not clear what is meant.
AC_MSG_ERROR([If enabled, site-packages must be specified explicitly, e.g. --with-site-packages=/usr/lib/python3/dist-packages])
else
# --with-site-packages provided with value. Override pythondir.
pythondir="${with_site_packages}"
fi
# pythondir needs to be expanded.
old=
while test "${old}" != "${pythondir}"; do
old="${pythondir}"
eval pythondir="\"${old}\""
2019-07-26 09:51:32 +02:00
done
2023-01-03 18:37:53 +02:00
# Set variables used in makefiles.
2019-07-26 09:51:32 +02:00
DISTCHECK_KEA_SHELL_CONFIGURE_FLAG="--enable-shell"
2023-01-03 18:37:53 +02:00
PKGPYTHONDIR="${pythondir}/${PACKAGE_NAME}"
PYTHON_PREFIX="${prefix}"
PYTHON_EXEC_PREFIX="${prefix}"
# Restore prefix.
prefix="$saved_prefix"
2023-06-29 13:35:06 +02:00
if test "x$enable_shell" != "xno"; then
shell_report='yes'
fi
2019-07-26 09:51:32 +02:00
else
PYTHON=no
fi
# Export to makefiles the info whether we have shell enabled or not
AM_CONDITIONAL(KEA_SHELL, test x$enable_shell != xno)
AC_SUBST(DISTCHECK_KEA_SHELL_CONFIGURE_FLAG)
AC_SUBST(PKGPYTHONDIR)
2023-01-03 18:37:53 +02:00
AC_SUBST(PYTHON_PREFIX)
AC_SUBST(PYTHON_EXEC_PREFIX)
2019-07-26 09:51:32 +02:00
2021-03-27 10:18:22 +01:00
# Decide if TLS is supported.
tls_support=no
if test "x${CRYPTO_NAME}" = "xOpenSSL"; then
tls_support=yes
fi
2021-04-20 17:03:51 +02:00
if test "x${CRYPTO_NAME}" = "xBotan" && test "x$BOTAN_BOOST" = "xyes"; then
tls_support=yes
fi
2021-03-27 10:18:22 +01:00
2021-03-29 18:39:02 +02:00
# Decide if the shell TLS test can work.
2023-06-29 10:50:13 +00:00
ca_tls_test=no
if test "x$enable_shell" != "xno"; then
ca_tls_test="$tls_support"
fi
2021-03-25 11:48:42 +01:00
AM_CONDITIONAL(CA_TLS_TEST, test x$ca_tls_test != xno)
2019-07-20 09:12:42 +02:00
AC_ARG_WITH([sphinx],
2022-01-10 16:04:56 +01:00
[AS_HELP_STRING([--with-sphinx=PATH],[path to sphinx-build tool])],
2019-07-20 09:12:42 +02:00
[sphinx_path="$withval"])
2019-07-24 09:58:40 +02:00
AC_ARG_WITH([pdflatex],
2022-01-10 16:04:56 +01:00
[AS_HELP_STRING([--with-pdflatex=PATH],[path to pdflatex tool])],
2019-07-24 09:58:40 +02:00
[pdflatex_path="$withval"])
2019-07-26 09:51:32 +02:00
PDFLATEX=no
2019-07-20 09:12:42 +02:00
2019-07-24 09:58:40 +02:00
if test "x$enable_generate_docs" != xno ; then
# Check for sphinx-build
2019-07-26 09:51:32 +02:00
AC_MSG_CHECKING([for sphinx-build])
2019-07-20 09:12:42 +02:00
if test -z "$sphinx_path"; then
AC_PATH_PROGS([SPHINXBUILD], [sphinx-build sphinx-build-3])
else
SPHINXBUILD="$sphinx_path"
fi
2019-07-24 09:58:40 +02:00
2019-07-16 18:40:50 +02:00
if test -z "$SPHINXBUILD"; then
2019-06-12 20:30:26 +02:00
AC_MSG_ERROR([sphinx-build not found; it is required for --enable-generate-docs, please see http://www.sphinx-doc.org/en/master/usage/installation.html for details])
2012-06-01 12:38:13 -07:00
else
2019-07-26 09:51:32 +02:00
AC_MSG_RESULT([$SPHINXBUILD])
AC_MSG_CHECKING([whether $SPHINXBUILD is runnable])
$SPHINXBUILD --version > conftest.err 2>&1
2012-06-01 12:38:13 -07:00
if test $? -ne 0 ; then
2019-07-26 09:51:32 +02:00
AC_MSG_ERROR([error with $SPHINXBUILD --version, check conftest.err for details])
2012-06-01 12:38:13 -07:00
fi
2019-07-26 09:51:32 +02:00
rm -f conftest.err
AC_MSG_RESULT([yes])
2019-07-16 18:40:50 +02:00
fi
2019-07-24 09:58:40 +02:00
# Check for pdflatex
if test -z "$pdflatex_path"; then
AC_PATH_PROG([PDFLATEX], [pdflatex])
else
PDFLATEX="$pdflatex_path"
fi
if test -z "$PDFLATEX"; then
2019-07-26 09:51:32 +02:00
PDFLATEX=no
2020-12-03 11:19:15 +02:00
elif test "x$PDFLATEX" = "xno"; then
2019-07-26 09:51:32 +02:00
AC_MSG_CHECKING([for pdflatex])
AC_MSG_RESULT([no (disabled)])
2019-07-24 09:58:40 +02:00
else
2019-07-26 09:51:32 +02:00
AC_MSG_CHECKING([whether $PDFLATEX is runnable])
$PDFLATEX --version > /dev/null 2>&1
2019-07-24 09:58:40 +02:00
if test $? -ne 0 ; then
2019-07-26 09:51:32 +02:00
AC_MSG_RESULT([no - disabled building docs in PDF])
PDFLATEX=no
else
AC_MSG_RESULT([yes])
2019-07-24 09:58:40 +02:00
fi
fi
2019-07-26 09:51:32 +02:00
if test -n "$SPHINXBUILD" -a "x$PDFLATEX" != "xno"; then
AC_MSG_CHECKING([whether $SPHINXBUILD and $PDFLATEX work])
ti=`mktemp -d`
to=`mktemp -d`
2020-05-24 09:31:05 +02:00
oldpath=`pwd`
2019-07-26 09:51:32 +02:00
echo 'hello' > $ti/contents.rst
2020-05-24 09:31:05 +02:00
$SPHINXBUILD -b latex -C $ti $to > /dev/null 2>&1
cd $to > /dev/null 2>&1
2019-12-20 09:58:04 +01:00
$PDFLATEX -interaction nonstopmode [[pP]]ython.tex > /dev/null 2>&1
2020-05-24 09:31:05 +02:00
cd $oldpath > /dev/null 2>&1
2019-12-20 09:58:04 +01:00
file $to/[[pP]]ython.pdf | grep PDF > /dev/null 2>&1
2019-07-26 09:51:32 +02:00
if test $? -ne 0 ; then
AC_MSG_RESULT([no - disabled building docs in PDF])
PDFLATEX=no
else
AC_MSG_RESULT([ok])
fi
rm -rf $ti $to
fi
2019-07-30 17:11:53 +02:00
if test "x$PDFLATEX" != "xno"; then
generate_docs_report="html, man and pdf"
else
generate_docs_report="html, man but no pdf"
fi
2019-11-27 15:34:12 +07:00
install_mans="no"
2019-07-30 17:11:53 +02:00
else
2019-11-28 21:17:44 +07:00
# now let's check if there are some existing manuals
# checking just one is sufficient
if test -f `pwd`/doc/sphinx/_build/man/kea-dhcp6.8; then
install_mans="yes"
else
install_mans="no"
fi
2019-07-30 17:11:53 +02:00
generate_docs_report="no"
2012-06-01 12:38:13 -07:00
fi
2019-11-27 15:34:12 +07:00
AM_CONDITIONAL(INSTALL_MANS, test "x$install_mans" == "xyes")
2019-07-26 09:51:32 +02:00
AM_CONDITIONAL(HAVE_PDFLATEX, test "x$PDFLATEX" != "xno")
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,
2021-01-04 15:47:04 +02:00
[AS_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
2021-01-04 15:47:04 +02:00
AC_ARG_ENABLE(logger-checks,
[AS_HELP_STRING([--enable-logger-checks],
[check logger messages [default=no]])], enable_logger_checks=$enableval, enable_logger_checks=no)
2012-05-01 15:18:42 +05:30
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")
2023-10-03 16:40:33 +03:00
# Check for xmllint.
AC_PATH_PROG(XMLLINT, xmllint, no)
AM_CONDITIONAL(HAVE_XMLLINT, test "x$XMLLINT" != "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
2021-01-04 15:47:04 +02:00
AC_ARG_ENABLE([fuzzing],
[AS_HELP_STRING([--enable-fuzzing],
[indicates that the code will be built with AFL (American Fuzzy Lop) support.
2016-11-21 11:53:04 +01:00
Code built this way is unusable as a regular server. [default=no]])],
2021-01-04 15:47:04 +02:00
[enable_fuzzing=$enableval], [enable_fuzzing=no])
2019-12-10 16:11:02 +00:00
AM_CONDITIONAL([ENABLE_AFL], [test x$enable_fuzzing != xno])
2016-11-21 11:53:04 +01:00
2019-12-10 16:11:02 +00:00
if test "x$enable_fuzzing" != "xno" ; then
2019-05-29 09:54:07 +01:00
AC_DEFINE([ENABLE_AFL], [1], [AFL fuzzing was enabled.])
2019-12-10 16:11:02 +00:00
AC_MSG_CHECKING([for AFL enabled compiler])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],
2020-07-13 10:58:42 +02:00
[#ifndef __AFL_COMPILER
#error AFL compiler required
#endif
])],
[AC_MSG_RESULT([yes])],
[AC_MSG_ERROR([set CXX to afl-clang-fast++ when --enable-fuzzing is used])])
2016-11-21 11:53:04 +01:00
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])
2021-01-04 15:47:04 +02:00
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([[
#include <unistd.h>
]], [[
extern int optreset;
optreset=1;
]])],
[AC_MSG_RESULT(yes)
var_optreset_exists=yes],
[AC_MSG_RESULT(no)
var_optreset_exists=no]
)
2012-09-20 11:19:51 +02:00
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
2021-05-25 18:07:50 +02:00
# GSS-API (from bind9)
AX_GSS_API
2015-05-11 15:23:18 +02:00
AC_DEFINE([CONFIG_H_WAS_INCLUDED], [1], [config.h inclusion marker])
2021-04-02 09:17:06 +02:00
# Autoconf 2.70 has runstatedir.
2024-08-13 13:45:25 +03:00
m4_version_prereq([2.70], [], [
AC_ARG_VAR(runstatedir, [$localstatedir/run for autoconf < 2.70])
AC_SUBST(runstatedir)
2019-06-01 13:26:24 +02:00
])
2019-05-31 17:29:29 +02:00
if test "x$runstatedir" = "x"; then
runstatedir="$localstatedir/run"
fi
2019-06-20 17:34:12 +02:00
# Expand runstatedir to remove ${localstatedir} from it
if (echo ${runstatedir} | grep -q localstatedir); then
runstatedir="$(eval echo ${runstatedir})"
fi
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([doc/Makefile])
AC_CONFIG_FILES([doc/sphinx/Makefile])
AC_CONFIG_FILES([doc/devel/Makefile])
AC_CONFIG_FILES([ext/Makefile])
AC_CONFIG_FILES([ext/gtest/Makefile])
AC_CONFIG_FILES([ext/coroutine/Makefile])
AC_CONFIG_FILES([kea_version.h])
AC_CONFIG_FILES([m4macros/Makefile])
AC_CONFIG_FILES([src/Makefile])
AC_CONFIG_FILES([src/bin/Makefile])
AC_CONFIG_FILES([src/bin/admin/Makefile])
2022-08-19 18:02:00 +03:00
AC_CONFIG_FILES([src/bin/admin/admin-utils.sh])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/bin/admin/kea-admin],
[chmod +x src/bin/admin/kea-admin])
AC_CONFIG_FILES([src/bin/admin/tests/Makefile])
AC_CONFIG_FILES([src/bin/admin/tests/data/Makefile])
2021-05-25 15:55:28 +03:00
AC_CONFIG_FILES([src/bin/admin/tests/admin_tests.sh],
[chmod +x src/bin/admin/tests/admin_tests.sh])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/bin/admin/tests/memfile_tests.sh],
[chmod +x src/bin/admin/tests/memfile_tests.sh])
AC_CONFIG_FILES([src/bin/admin/tests/mysql_tests.sh],
[chmod +x src/bin/admin/tests/mysql_tests.sh])
AC_CONFIG_FILES([src/bin/admin/tests/pgsql_tests.sh],
[chmod +x src/bin/admin/tests/pgsql_tests.sh])
AC_CONFIG_FILES([src/bin/agent/Makefile])
AC_CONFIG_FILES([src/bin/agent/tests/Makefile])
AC_CONFIG_FILES([src/bin/agent/tests/ca_process_tests.sh],
[chmod +x src/bin/agent/tests/ca_process_tests.sh])
AC_CONFIG_FILES([src/bin/agent/tests/test_basic_auth_libraries.h])
AC_CONFIG_FILES([src/bin/agent/tests/test_callout_libraries.h])
AC_CONFIG_FILES([src/bin/agent/tests/test_data_files_config.h])
AC_CONFIG_FILES([src/bin/d2/Makefile])
AC_CONFIG_FILES([src/bin/d2/tests/Makefile])
AC_CONFIG_FILES([src/bin/d2/tests/d2_process_tests.sh],
[chmod +x src/bin/d2/tests/d2_process_tests.sh])
2021-07-13 11:59:05 +02:00
AC_CONFIG_FILES([src/bin/d2/tests/test_callout_libraries.h])
AC_CONFIG_FILES([src/bin/d2/tests/test_configured_libraries.h])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/bin/d2/tests/test_data_files_config.h])
AC_CONFIG_FILES([src/bin/dhcp4/Makefile])
AC_CONFIG_FILES([src/bin/dhcp4/tests/Makefile])
AC_CONFIG_FILES([src/bin/dhcp4/tests/dhcp4_process_tests.sh],
[chmod +x src/bin/dhcp4/tests/dhcp4_process_tests.sh])
AC_CONFIG_FILES([src/bin/dhcp4/tests/marker_file.h])
AC_CONFIG_FILES([src/bin/dhcp4/tests/test_data_files_config.h])
AC_CONFIG_FILES([src/bin/dhcp4/tests/test_libraries.h])
AC_CONFIG_FILES([src/bin/dhcp6/Makefile])
AC_CONFIG_FILES([src/bin/dhcp6/tests/Makefile])
AC_CONFIG_FILES([src/bin/dhcp6/tests/dhcp6_process_tests.sh],
[chmod +x src/bin/dhcp6/tests/dhcp6_process_tests.sh])
AC_CONFIG_FILES([src/bin/dhcp6/tests/marker_file.h])
AC_CONFIG_FILES([src/bin/dhcp6/tests/test_data_files_config.h])
AC_CONFIG_FILES([src/bin/dhcp6/tests/test_libraries.h])
AC_CONFIG_FILES([src/bin/keactrl/Makefile])
AC_CONFIG_FILES([src/bin/keactrl/keactrl],
[chmod +x src/bin/keactrl/keactrl])
AC_CONFIG_FILES([src/bin/keactrl/keactrl.conf])
AC_CONFIG_FILES([src/bin/keactrl/tests/Makefile])
AC_CONFIG_FILES([src/bin/keactrl/tests/keactrl_tests.sh],
[chmod +x src/bin/keactrl/tests/keactrl_tests.sh])
AC_CONFIG_FILES([src/bin/lfc/Makefile])
AC_CONFIG_FILES([src/bin/lfc/tests/Makefile])
AC_CONFIG_FILES([src/bin/netconf/Makefile])
AC_CONFIG_FILES([src/bin/netconf/tests/Makefile])
AC_CONFIG_FILES([src/bin/netconf/tests/shtests/Makefile])
AC_CONFIG_FILES([src/bin/netconf/tests/shtests/netconf_tests.sh],
[chmod +x src/bin/netconf/tests/shtests/netconf_tests.sh])
AC_CONFIG_FILES([src/bin/netconf/tests/test_data_files_config.h])
AC_CONFIG_FILES([src/bin/netconf/tests/test_libraries.h])
AC_CONFIG_FILES([src/bin/perfdhcp/Makefile])
AC_CONFIG_FILES([src/bin/perfdhcp/tests/Makefile])
AC_CONFIG_FILES([src/bin/perfdhcp/tests/testdata/Makefile])
AC_CONFIG_FILES([src/bin/shell/Makefile])
AC_CONFIG_FILES([src/bin/shell/kea-shell],
[chmod +x src/bin/shell/kea-shell])
AC_CONFIG_FILES([src/bin/shell/tests/Makefile])
AC_CONFIG_FILES([src/bin/shell/tests/basic_auth_tests.sh],
[chmod +x src/bin/shell/tests/basic_auth_tests.sh])
AC_CONFIG_FILES([src/bin/shell/tests/shell_process_tests.sh],
[chmod +x src/bin/shell/tests/shell_process_tests.sh])
AC_CONFIG_FILES([src/bin/shell/tests/shell_unittest.py],
[chmod +x src/bin/shell/tests/shell_unittest.py])
2021-03-29 17:55:33 +03:00
AC_CONFIG_FILES([src/bin/shell/tests/tls_ca_process_tests.sh],
[chmod +x src/bin/shell/tests/tls_ca_process_tests.sh])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/hooks/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/bootp/Makefile])
2022-07-14 16:18:29 -04:00
AC_CONFIG_FILES([src/hooks/dhcp/bootp/libloadtests/Makefile])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/hooks/dhcp/bootp/tests/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/flex_option/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/flex_option/libloadtests/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/flex_option/tests/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/high_availability/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/high_availability/libloadtests/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/high_availability/tests/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/lease_cmds/Makefile])
2022-07-14 16:18:29 -04:00
AC_CONFIG_FILES([src/hooks/dhcp/lease_cmds/libloadtests/Makefile])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/hooks/dhcp/lease_cmds/tests/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/mysql_cb/Makefile])
2022-07-14 16:18:29 -04:00
AC_CONFIG_FILES([src/hooks/dhcp/mysql_cb/libloadtests/Makefile])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/hooks/dhcp/mysql_cb/tests/Makefile])
2021-06-09 13:46:12 +02:00
AC_CONFIG_FILES([src/hooks/dhcp/pgsql_cb/Makefile])
2022-07-14 16:18:29 -04:00
AC_CONFIG_FILES([src/hooks/dhcp/pgsql_cb/libloadtests/Makefile])
2021-06-09 13:46:12 +02:00
AC_CONFIG_FILES([src/hooks/dhcp/pgsql_cb/tests/Makefile])
2021-02-16 22:25:12 +02:00
AC_CONFIG_FILES([src/hooks/dhcp/run_script/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/run_script/libloadtests/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/run_script/tests/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/run_script/tests/run_script_test.sh],
[chmod +x src/hooks/dhcp/run_script/tests/run_script_test.sh])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/hooks/dhcp/stat_cmds/Makefile])
2022-07-14 16:18:29 -04:00
AC_CONFIG_FILES([src/hooks/dhcp/stat_cmds/libloadtests/Makefile])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/hooks/dhcp/stat_cmds/tests/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/user_chk/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/user_chk/tests/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/user_chk/tests/test_data_files_config.h])
2024-02-06 10:40:27 -05:00
AC_CONFIG_FILES([src/hooks/dhcp/perfmon/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/perfmon/libloadtests/Makefile])
AC_CONFIG_FILES([src/hooks/dhcp/perfmon/tests/Makefile])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/lib/Makefile])
AC_CONFIG_FILES([src/lib/asiodns/Makefile])
AC_CONFIG_FILES([src/lib/asiodns/tests/Makefile])
AC_CONFIG_FILES([src/lib/asiolink/Makefile])
AC_CONFIG_FILES([src/lib/asiolink/testutils/Makefile])
AC_CONFIG_FILES([src/lib/asiolink/tests/Makefile])
2021-02-16 22:25:12 +02:00
AC_CONFIG_FILES([src/lib/asiolink/tests/process_spawn_app.sh],
[chmod +x src/lib/asiolink/tests/process_spawn_app.sh])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/lib/cc/Makefile])
AC_CONFIG_FILES([src/lib/cc/tests/Makefile])
AC_CONFIG_FILES([src/lib/config/Makefile])
AC_CONFIG_FILES([src/lib/config/tests/Makefile])
AC_CONFIG_FILES([src/lib/config_backend/Makefile])
AC_CONFIG_FILES([src/lib/config_backend/tests/Makefile])
AC_CONFIG_FILES([src/lib/cryptolink/Makefile])
AC_CONFIG_FILES([src/lib/cryptolink/tests/Makefile])
2021-07-06 13:32:55 +02:00
AC_CONFIG_FILES([src/lib/d2srv/Makefile])
2021-10-04 20:12:47 +03:00
AC_CONFIG_FILES([src/lib/d2srv/testutils/Makefile])
2021-07-06 13:32:55 +02:00
AC_CONFIG_FILES([src/lib/d2srv/tests/Makefile])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/lib/database/Makefile])
AC_CONFIG_FILES([src/lib/database/tests/Makefile])
AC_CONFIG_FILES([src/lib/database/testutils/Makefile])
AC_CONFIG_FILES([src/lib/dhcp/Makefile])
2023-10-14 01:56:20 +03:00
AC_CONFIG_FILES([src/lib/dhcp/testutils/Makefile])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/lib/dhcp/tests/Makefile])
AC_CONFIG_FILES([src/lib/dhcp_ddns/Makefile])
AC_CONFIG_FILES([src/lib/dhcp_ddns/tests/Makefile])
AC_CONFIG_FILES([src/lib/dhcpsrv/Makefile])
AC_CONFIG_FILES([src/lib/dhcpsrv/tests/Makefile])
AC_CONFIG_FILES([src/lib/dhcpsrv/tests/test_libraries.h])
2024-06-14 17:09:50 +03:00
AC_CONFIG_FILES([src/lib/dhcpsrv/tests/test_kea_lfc_env.sh],
[chmod +x src/lib/dhcpsrv/tests/test_kea_lfc_env.sh])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/lib/dhcpsrv/testutils/Makefile])
AC_CONFIG_FILES([src/lib/dns/Makefile])
AC_CONFIG_FILES([src/lib/dns/tests/Makefile])
AC_CONFIG_FILES([src/lib/dns/tests/testdata/Makefile])
AC_CONFIG_FILES([src/lib/eval/Makefile])
AC_CONFIG_FILES([src/lib/eval/tests/Makefile])
AC_CONFIG_FILES([src/lib/exceptions/Makefile])
AC_CONFIG_FILES([src/lib/exceptions/tests/Makefile])
AC_CONFIG_FILES([src/lib/hooks/Makefile])
AC_CONFIG_FILES([src/lib/hooks/tests/Makefile])
AC_CONFIG_FILES([src/lib/hooks/tests/marker_file.h])
AC_CONFIG_FILES([src/lib/hooks/tests/test_libraries.h])
AC_CONFIG_FILES([src/lib/http/Makefile])
AC_CONFIG_FILES([src/lib/http/tests/Makefile])
2024-07-19 18:41:51 +02:00
AC_CONFIG_FILES([src/lib/http/testutils/Makefile])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/lib/log/Makefile])
AC_CONFIG_FILES([src/lib/log/compiler/Makefile])
AC_CONFIG_FILES([src/lib/log/interprocess/Makefile])
AC_CONFIG_FILES([src/lib/log/interprocess/tests/Makefile])
AC_CONFIG_FILES([src/lib/log/tests/Makefile])
AC_CONFIG_FILES([src/lib/log/tests/buffer_logger_test.sh],
[chmod +x src/lib/log/tests/buffer_logger_test.sh])
AC_CONFIG_FILES([src/lib/log/tests/console_test.sh],
[chmod +x src/lib/log/tests/console_test.sh])
AC_CONFIG_FILES([src/lib/log/tests/destination_test.sh],
[chmod +x src/lib/log/tests/destination_test.sh])
AC_CONFIG_FILES([src/lib/log/tests/init_logger_test.sh],
[chmod +x src/lib/log/tests/init_logger_test.sh])
AC_CONFIG_FILES([src/lib/log/tests/local_file_test.sh],
[chmod +x src/lib/log/tests/local_file_test.sh])
AC_CONFIG_FILES([src/lib/log/tests/logger_lock_test.sh],
[chmod +x src/lib/log/tests/logger_lock_test.sh])
AC_CONFIG_FILES([src/lib/log/tests/severity_test.sh],
[chmod +x src/lib/log/tests/severity_test.sh])
AC_CONFIG_FILES([src/lib/log/tests/tempdir.h])
AC_CONFIG_FILES([src/lib/mysql/Makefile])
AC_CONFIG_FILES([src/lib/mysql/testutils/Makefile])
AC_CONFIG_FILES([src/lib/mysql/tests/Makefile])
AC_CONFIG_FILES([src/lib/pgsql/Makefile])
AC_CONFIG_FILES([src/lib/pgsql/tests/Makefile])
AC_CONFIG_FILES([src/lib/pgsql/testutils/Makefile])
AC_CONFIG_FILES([src/lib/process/Makefile])
2023-02-11 12:43:02 +02:00
AC_CONFIG_FILES([src/lib/process/cfgrpt/Makefile])
AC_CONFIG_FILES([src/lib/process/cfgrpt/tests/Makefile])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/lib/process/tests/Makefile])
AC_CONFIG_FILES([src/lib/process/testutils/Makefile])
AC_CONFIG_FILES([src/lib/stats/Makefile])
2021-10-11 16:40:48 +02:00
AC_CONFIG_FILES([src/lib/stats/tests/Makefile])
2021-10-11 16:40:48 +02:00
AC_CONFIG_FILES([src/lib/stats/testutils/Makefile])
2022-10-04 06:51:58 -04:00
AC_CONFIG_FILES([src/lib/tcp/Makefile])
AC_CONFIG_FILES([src/lib/tcp/tests/Makefile])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/lib/testutils/Makefile])
AC_CONFIG_FILES([src/lib/testutils/dhcp_test_lib.sh],
[chmod +x src/lib/testutils/dhcp_test_lib.sh])
AC_CONFIG_FILES([src/lib/testutils/xml_reporting_test_lib.sh],
[chmod +x src/lib/testutils/xml_reporting_test_lib.sh])
AC_CONFIG_FILES([src/lib/util/Makefile])
AC_CONFIG_FILES([src/lib/util/io/Makefile])
AC_CONFIG_FILES([src/lib/util/python/Makefile])
AC_CONFIG_FILES([src/lib/util/python/gen_wiredata.py],
[chmod +x src/lib/util/python/gen_wiredata.py])
AC_CONFIG_FILES([src/lib/util/tests/Makefile])
AC_CONFIG_FILES([src/lib/util/unittests/Makefile])
AC_CONFIG_FILES([src/lib/yang/Makefile])
AC_CONFIG_FILES([src/lib/yang/pretests/Makefile])
AC_CONFIG_FILES([src/lib/yang/tests/Makefile])
AC_CONFIG_FILES([src/lib/yang/testutils/Makefile])
AC_CONFIG_FILES([src/share/Makefile])
AC_CONFIG_FILES([src/share/api/Makefile])
AC_CONFIG_FILES([src/share/database/Makefile])
AC_CONFIG_FILES([src/share/database/scripts/Makefile])
AC_CONFIG_FILES([src/share/database/scripts/mysql/Makefile])
2021-08-17 12:05:45 +02:00
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_001.0_to_002.0.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_001.0_to_002.0.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_002.0_to_003.0.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_002.0_to_003.0.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_003.0_to_004.0.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_003.0_to_004.0.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_004.0_to_004.1.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_004.0_to_004.1.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_004.1_to_005.0.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_004.1_to_005.0.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_005.0_to_005.1.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_005.0_to_005.1.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_005.1_to_005.2.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_005.1_to_005.2.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_005.2_to_006.0.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_005.2_to_006.0.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_006.0_to_007.0.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_006.0_to_007.0.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_007.0_to_008.0.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_007.0_to_008.0.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_008.0_to_008.1.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_008.0_to_008.1.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_008.1_to_008.2.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_008.1_to_008.2.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_008.2_to_009.0.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_008.2_to_009.0.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_009.0_to_009.1.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_009.0_to_009.1.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_009.1_to_009.2.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_009.1_to_009.2.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_009.2_to_009.3.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_009.2_to_009.3.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_009.3_to_009.4.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_009.3_to_009.4.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_009.4_to_009.5.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_009.4_to_009.5.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_009.5_to_009.6.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_009.5_to_009.6.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_009.6_to_010.0.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_009.6_to_010.0.sh])
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_010_to_011.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_010_to_011.sh])
2021-09-17 15:02:32 +02:00
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_011_to_012.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_011_to_012.sh])
2021-12-16 16:09:34 +02:00
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_012_to_013.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_012_to_013.sh])
2022-06-03 09:43:24 -04:00
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_013_to_014.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_013_to_014.sh])
2023-03-06 17:34:30 +01:00
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_014_to_015.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_014_to_015.sh])
2023-03-30 15:03:47 +02:00
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_015_to_016.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_015_to_016.sh])
2023-04-04 10:34:17 +02:00
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_016_to_017.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_016_to_017.sh])
2023-05-04 15:41:58 +03:00
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_017_to_018.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_017_to_018.sh])
2023-06-14 11:02:55 -04:00
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_018_to_019.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_018_to_019.sh])
2023-07-06 10:24:26 -04:00
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_019_to_020.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_019_to_020.sh])
2023-12-13 18:02:24 +01:00
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_020_to_021.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_020_to_021.sh])
2024-05-21 13:53:43 -04:00
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_021_to_022.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_021_to_022.sh])
2024-04-18 15:25:48 +02:00
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_022_to_023.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_022_to_023.sh])
2024-07-09 13:38:58 -04:00
AC_CONFIG_FILES([src/share/database/scripts/mysql/upgrade_023_to_024.sh],
[chmod +x src/share/database/scripts/mysql/upgrade_023_to_024.sh])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/share/database/scripts/mysql/wipe_data.sh],
[chmod +x src/share/database/scripts/mysql/wipe_data.sh])
AC_CONFIG_FILES([src/share/database/scripts/pgsql/Makefile])
2021-12-23 09:50:24 -05:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_001.0_to_002.0.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_001.0_to_002.0.sh])
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_002.0_to_003.0.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_002.0_to_003.0.sh])
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_003.0_to_003.1.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_003.0_to_003.1.sh])
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_003.1_to_003.2.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_003.1_to_003.2.sh])
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_003.2_to_003.3.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_003.2_to_003.3.sh])
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_003.3_to_004.0.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_003.3_to_004.0.sh])
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_004.0_to_005.0.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_004.0_to_005.0.sh])
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_005.0_to_005.1.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_005.0_to_005.1.sh])
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_005.1_to_006.0.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_005.1_to_006.0.sh])
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_006.0_to_006.1.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_006.0_to_006.1.sh])
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_006.1_to_006.2.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_006.1_to_006.2.sh])
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_006.2_to_007.0.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_006.2_to_007.0.sh])
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_007_to_008.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_007_to_008.sh])
[#95] Adds v4 support for networks,subnets,pools,options
configure.ac
added pgsql/upgrade_008_to_009.sh
src/share/database/scripts/pgsql/dhcpdb_create.pgsql
src/share/database/scripts/pgsql/upgrade_008_to_009.sh.in
Corrected typo dhcp4_option_def_server_option_def_id_fkey
Add missing cascade to constraint on dhcp4/6_subnet_server tables.
Dropped extraneous dhcp4/6_shared_network_ADEL triggers
Replaced createOptionAuditDHCP4() and
createOptionAuditDHCP6() with corrected local variable type
src/bin/admin/tests/pgsql_tests.sh.in
updated expected schema version
added pgsql_upgrade_8_0_to_9_0()
src/hooks/dhcp/mysql_cb/tests/mysql_cb_dhcp4_unittest.cc
Disabled TEST_F(MySqlConfigBackendDHCPv4Test, getAllSharedNetworks4Test)
src/hooks/dhcp/pgsql_cb/pgsql_cb_dhcp4.cc
implemented functions for shared-networks, subnets,
pools, options, and option-defs
src/hooks/dhcp/pgsql_cb/pgsql_cb_impl.*
PgSqlConfigBackendImpl::
setRelays()
setRequireClasses()
- new convenience functions
getAllOptions()
getOptions()
- implemented
Changed reference tracking from bool to counter
processOptionRow()
addOptionValueBinding() - corrected buffer handling
src/hooks/dhcp/pgsql_cb/tests/pgsql_cb_dhcp4_unittest.cc
Added tests subnets, shared networks, pools, options, option defs,
src/lib/dhcpsrv/testutils/generic_cb_dhcp4_unittest.*
GenericConfigBackendDHCPv4Test::testNewAuditEntry() new variant which
accepts a list of expected audit entries
GenericConfigBackendDHCPv4Test::getAllSharedNetworks4Test() - now
tests for an expected list of audit entries
2022-02-10 11:44:03 -05:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_008_to_009.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_008_to_009.sh])
2022-02-21 14:03:29 -05:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_009_to_010.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_009_to_010.sh])
2022-03-10 15:59:29 -05:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_010_to_011.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_010_to_011.sh])
2022-06-03 09:43:24 -04:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_011_to_012.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_011_to_012.sh])
2022-06-20 13:17:24 +03:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_012_to_013.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_012_to_013.sh])
2023-03-06 17:34:30 +01:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_013_to_014.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_013_to_014.sh])
2023-03-30 15:03:47 +02:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_014_to_015.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_014_to_015.sh])
2023-04-04 10:34:17 +02:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_015_to_016.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_015_to_016.sh])
2023-05-04 15:41:58 +03:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_016_to_017.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_016_to_017.sh])
2023-06-16 07:31:34 -04:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_017_to_018.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_017_to_018.sh])
2023-07-06 10:24:26 -04:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_018_to_019.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_018_to_019.sh])
2023-12-13 18:02:24 +01:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_019_to_020.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_019_to_020.sh])
2024-04-18 18:33:11 +00:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_020_to_021.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_020_to_021.sh])
2024-05-21 23:20:48 +03:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_021_to_022.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_021_to_022.sh])
2024-04-18 15:25:48 +02:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_022_to_023.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_022_to_023.sh])
2024-07-09 13:38:58 -04:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/upgrade_023_to_024.sh],
[chmod +x src/share/database/scripts/pgsql/upgrade_023_to_024.sh])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([src/share/database/scripts/pgsql/wipe_data.sh],
[chmod +x src/share/database/scripts/pgsql/wipe_data.sh])
AC_CONFIG_FILES([src/share/yang/Makefile])
AC_CONFIG_FILES([src/share/yang/modules/Makefile])
2021-07-23 19:14:29 +03:00
AC_CONFIG_FILES([src/share/yang/modules/utils/Makefile])
2022-09-05 22:52:48 +03:00
AC_CONFIG_FILES([src/share/yang/modules/utils/check-hashes.sh],
[chmod +x src/share/yang/modules/utils/check-hashes.sh])
AC_CONFIG_FILES([src/share/yang/modules/utils/check-revisions.sh],
[chmod +x src/share/yang/modules/utils/check-revisions.sh])
2021-07-30 14:42:05 +03:00
AC_CONFIG_FILES([src/share/yang/modules/utils/reinstall.sh],
[chmod +x src/share/yang/modules/utils/reinstall.sh])
2021-01-28 12:37:03 +02:00
AC_CONFIG_FILES([tools/Makefile])
AC_CONFIG_FILES([tools/path_replacer.sh],
[chmod +x tools/path_replacer.sh])
2021-06-21 18:07:02 +02:00
AC_CONFIG_FILES([tools/extract_bnf.sh],
[chmod +x tools/extract_bnf.sh])
2014-08-11 16:09:43 +02:00
EXTENDED_VERSION=${PACKAGE_VERSION}
if test "$KEA_SRCID" != ""; then
EXTENDED_VERSION="${EXTENDED_VERSION} ($KEA_SRCID)"
fi
2024-04-23 19:57:05 +03:00
AC_SUBST(EXTENDED_VERSION)
AC_OUTPUT
2014-08-11 16:09:43 +02:00
2019-02-20 19:52:13 +01:00
# By default the following variables are defined:
# - prefix = /usr/local
# - exec_prefix = ${prefix}
# - libdir = ${exec_prefix}/lib
# The exec_prefix and libdir variables contain unexpanded,literal ${prefix}.
# This is done on purpose. The idea is to be able to make this expansion
# late, so use can do:
# make install prefix=/my/own/prefix
#
# Now, we want to print those directories in the config.report, but we
# don't want to modify the actual variables. So we need to expand them.
# Since libdir contains $exec_prefix and exec_prefix contains $prefix, then
# to get the real value, we need to expand it twice.
libdir_real="$(eval echo ${libdir})"
libdir_real="$(eval echo ${libdir_real})"
2024-04-23 19:57:05 +03:00
# Print the report.
2010-05-17 14:05:15 +00:00
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:
2017-12-11 01:45:34 +01:00
Name: ${PACKAGE_NAME}
Version: ${PACKAGE_VERSION}
Extended version: ${EXTENDED_VERSION}
2020-04-28 15:56:07 +02:00
Version type: ${PACKAGE_VERSION_TYPE}
2017-12-11 01:45:34 +01:00
OS Family: ${OS_TYPE}
2018-05-16 21:10:44 +02:00
2019-02-20 19:52:13 +01:00
Prefix: ${prefix}
Hooks directory: ${libdir_real}/kea/hooks
2016-11-02 14:46:21 +01:00
END
if test "$PREMIUM" != ""; then
cat >> config.report << END
2024-03-22 11:45:06 +02:00
Premium hooks: ${PREMIUM}
2018-05-14 15:10:03 +02:00
Included Hooks: ${INCLUDED_HOOKS}
2016-11-02 14:46:21 +01:00
END
else
cat >> config.report << END
2018-05-14 15:10:03 +02:00
Premium hooks: no
2016-11-02 14:46:21 +01:00
END
fi
2019-10-07 21:26:12 +02:00
cat >> config.report << END
Configure arguments:
$ac_configure_args
END
2016-11-02 14:46:21 +01:00
cat >> config.report << END
2013-09-10 11:33:32 +02:00
C++ Compiler:
CXX: ${CXX}
2013-09-12 15:45:08 +02:00
CXX_VERSION: ${CXX_VERSION}
2016-10-14 13:50:03 +02:00
CXX_STANDARD: ${CXX_STANDARD}
2013-09-10 11:33:32 +02:00
DEFS: ${DEFS}
CPPFLAGS: ${CPPFLAGS}
CXXFLAGS: ${CXXFLAGS}
LDFLAGS: ${LDFLAGS}
2014-08-12 13:11:38 +02:00
KEA_CXXFLAGS: ${KEA_CXXFLAGS}
2014-06-25 15:00:26 +02:00
END
2013-09-10 11:33:32 +02:00
2014-06-25 15:00:26 +02:00
if test "$PYTHON" != "no" ; then
cat >> config.report << END
2013-09-10 11:33:32 +02:00
2017-03-07 22:45:17 +01:00
Python:
2023-01-03 18:37:53 +02:00
PYTHON: ${PYTHON}
PYTHON_VERSION: ${PYTHON_VERSION}
PYTHON_PREFIX: ${PYTHON_PREFIX}
PYTHON_EXEC_PREFIX: ${PYTHON_EXEC_PREFIX}
PKGPYTHONDIR: ${PKGPYTHONDIR}
2013-09-10 11:33:32 +02:00
2014-06-25 15:00:26 +02:00
END
else
cat >> config.report << END
2017-03-07 22:45:17 +01:00
Python:
PYTHON_VERSION: not needed (because kea-shell is disabled)
2014-06-25 15:00:26 +02:00
END
fi
cat >> config.report << END
2013-09-10 11:33:32 +02:00
Boost:
BOOST_VERSION: ${BOOST_VERSION}
BOOST_INCLUDES: ${BOOST_INCLUDES}
2015-09-04 10:42:21 +02:00
BOOST_LIBS: ${BOOST_LIBS}
2013-09-10 11:33:32 +02:00
2017-07-14 14:04:21 -04:00
END
if test x"$BOOST_LIBS" = "x"; then
cat >> config.report << END
WARNING: You will be building with boost headers only rather
than linking with boost_system library. This is NOT recommended as
it may result in non-optimized code on some platforms and
introduce runtime errors on others.
END
fi
cat >> config.report << END
2014-06-30 15:26:38 +02:00
${CRYPTO_NAME}:
CRYPTO_VERSION: ${CRYPTO_VERSION}
CRYPTO_CFLAGS: ${CRYPTO_CFLAGS}
CRYPTO_INCLUDES: ${CRYPTO_INCLUDES}
CRYPTO_LDFLAGS: ${CRYPTO_LDFLAGS}
CRYPTO_LIBS: ${CRYPTO_LIBS}
2021-03-27 10:18:22 +01:00
TLS support: $tls_support
2014-06-30 15:26:38 +02:00
${DISABLED_CRYPTO}: no
2013-09-10 11:33:32 +02:00
Log4cplus:
2017-12-11 01:45:34 +01:00
LOG4CPLUS_VERSION: ${LOG4CPLUS_VERSION}
2013-09-10 11:33:32 +02:00
LOG4CPLUS_INCLUDES: ${LOG4CPLUS_INCLUDES}
2017-12-11 01:45:34 +01:00
LOG4CPLUS_LIBS: ${LOG4CPLUS_LIBS}
2013-09-10 11:33:32 +02:00
2015-11-04 22:03:51 +09:00
Flex/bison:
FLEX: ${LEX}
BISON: ${YACC}
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
2014-07-01 13:05:44 +02:00
MySQL:
no
2014-03-11 15:42:26 +01:00
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
2014-07-01 13:05:44 +02:00
PostgreSQL:
no
2014-03-11 15:42:26 +01:00
END
2013-09-10 11:33:32 +02:00
fi
2022-10-05 17:16:03 +03:00
cat >> config.report << END
NETCONF:
${HAVE_NETCONF-no}
END
if test -n "${LIBYANG_VERSION}"; then
2021-07-22 13:48:44 +03:00
cat >> config.report << END
2018-03-18 13:20:20 +02:00
2022-10-05 17:16:03 +03:00
libyang:
LIBYANG_CPPFLAGS: ${LIBYANG_CPPFLAGS}
LIBYANG_INCLUDEDIR: ${LIBYANG_INCLUDEDIR}
LIBYANG_LIBS: ${LIBYANG_LIBS}
LIBYANG_PREFIX: ${LIBYANG_PREFIX}
LIBYANG_VERSION: ${LIBYANG_VERSION}
2018-03-18 13:20:20 +02:00
END
else
2021-07-22 13:48:44 +03:00
cat >> config.report << END
2018-03-18 13:20:20 +02:00
2022-10-05 17:16:03 +03:00
libyang:
no
END
fi
if test -n "${LIBYANGCPP_VERSION}"; then
cat >> config.report << END
libyang-cpp:
LIBYANGCPP_CPPFLAGS: ${LIBYANGCPP_CPPFLAGS}
LIBYANGCPP_INCLUDEDIR: ${LIBYANGCPP_INCLUDEDIR}
LIBYANGCPP_LIBS: ${LIBYANGCPP_LIBS}
LIBYANGCPP_PREFIX: ${LIBYANGCPP_PREFIX}
LIBYANGCPP_VERSION: ${LIBYANGCPP_VERSION}
END
else
cat >> config.report << END
libyang-cpp:
no
END
fi
if test -n "${SYSREPO_VERSION}"; then
cat >> config.report << END
sysrepo:
SYSREPO_CPPFLAGS: ${SYSREPO_CPPFLAGS}
SYSREPO_INCLUDEDIR: ${SYSREPO_INCLUDEDIR}
SYSREPO_LIBS: ${SYSREPO_LIBS}
SYSREPO_PREFIX: ${SYSREPO_PREFIX}
SYSREPO_VERSION: ${SYSREPO_VERSION}
SR_REPO_PATH: ${SR_REPO_PATH}
SR_PLUGINS_PATH: ${SR_PLUGINS_PATH}
SRPD_PLUGINS_PATH: ${SRPD_PLUGINS_PATH}
END
else
cat >> config.report << END
sysrepo:
no
END
fi
if test -n "${SYSREPOCPP_VERSION}"; then
cat >> config.report << END
sysrepo-cpp:
SYSREPOCPP_CPPFLAGS: ${SYSREPOCPP_CPPFLAGS}
SYSREPOCPP_INCLUDEDIR: ${SYSREPOCPP_INCLUDEDIR}
SYSREPOCPP_LIBS: ${SYSREPOCPP_LIBS}
SYSREPOCPP_PREFIX : ${SYSREPOCPP_PREFIX}
SYSREPOCPP_VERSION: ${SYSREPOCPP_VERSION}
END
else
cat >> config.report << END
sysrepo-cpp:
no
2018-03-18 13:20:20 +02:00
END
fi
2013-09-10 11:33:32 +02:00
if test "$enable_gtest" != "no"; then
cat >> config.report << END
2018-02-13 12:20:31 +00:00
Google Test:
2013-09-10 11:33:32 +02:00
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
2018-02-13 12:20:31 +00:00
else
cat >> config.report << END
2018-03-18 13:20:20 +02:00
2018-02-13 12:20:31 +00:00
Google Test:
no
END
2012-10-29 13:43:31 +00:00
fi
2021-06-01 10:02:06 +02:00
if test "$ENABLE_GSSAPI" = "yes"; then
2021-05-25 18:07:50 +02:00
cat >> config.report << END
GSS-API support:
GSSAPI_CFLAGS: ${GSSAPI_CFLAGS}
GSSAPI_LIBS: ${GSSAPI_LIBS}
END
fi
2012-10-29 13:43:31 +00:00
cat >> config.report << END
2010-05-17 14:05:15 +00:00
Developer:
2019-03-05 14:23:43 +01:00
Enable Debugging: $debug_enabled
Google Tests: $enable_gtest
Valgrind: $found_valgrind
C++ Code Coverage: $USE_LCOV
Logger checks: $enable_logger_checks
2019-11-27 15:34:12 +07:00
Install existing manuals: $install_mans
2019-11-28 21:17:44 +07:00
Generate Documentation: $generate_docs_report
2019-03-12 21:10:41 +01:00
Generate Parser: $enable_generate_parser
Generate Messages Files: $enable_generate_messages
2019-03-05 14:23:43 +01:00
Perfdhcp: $enable_perfdhcp
2019-08-13 16:26:14 +02:00
Kea-shell: $shell_report
2019-12-10 16:11:02 +00:00
Enable fuzzing: $enable_fuzzing
2010-05-17 14:05:15 +00:00
END
cat config.report
cat <<EOF
2014-08-06 12:51:57 +02:00
Now you can type "make" to build Kea. Note that if you intend to
2013-10-01 13:54:18 +05:30
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.
2010-05-17 14:05:15 +00:00
EOF