Browse Source

[master] Merge branch 'trac3507'

Marcin Siodelski 10 years ago
parent
commit
6616b1c0ad
51 changed files with 90 additions and 88 deletions
  1. 24 24
      configure.ac
  2. 1 1
      m4macros/Makefile.am
  3. 3 3
      m4macros/ax_boost_for_bind10.m4
  4. 1 1
      src/bin/d2/Makefile.am
  5. 1 1
      src/bin/d2/tests/Makefile.am
  6. 1 1
      src/bin/dhcp4/Makefile.am
  7. 1 1
      src/bin/dhcp4/tests/Makefile.am
  8. 1 1
      src/bin/dhcp6/Makefile.am
  9. 1 1
      src/bin/dhcp6/tests/Makefile.am
  10. 6 4
      src/bin/keactrl/keactrl.in
  11. 1 1
      src/bin/perfdhcp/Makefile.am
  12. 1 1
      src/bin/perfdhcp/tests/Makefile.am
  13. 1 1
      src/bin/sockcreator/Makefile.am
  14. 1 1
      src/bin/sockcreator/tests/Makefile.am
  15. 1 1
      src/hooks/dhcp/user_chk/Makefile.am
  16. 1 1
      src/hooks/dhcp/user_chk/tests/Makefile.am
  17. 2 2
      src/lib/asiodns/Makefile.am
  18. 2 2
      src/lib/asiodns/tests/Makefile.am
  19. 2 2
      src/lib/asiolink/Makefile.am
  20. 2 2
      src/lib/asiolink/tests/Makefile.am
  21. 1 1
      src/lib/cc/Makefile.am
  22. 1 1
      src/lib/cc/tests/Makefile.am
  23. 1 1
      src/lib/config/tests/Makefile.am
  24. 1 1
      src/lib/cryptolink/Makefile.am
  25. 1 1
      src/lib/cryptolink/tests/Makefile.am
  26. 1 1
      src/lib/dhcp/Makefile.am
  27. 1 1
      src/lib/dhcp/tests/Makefile.am
  28. 1 1
      src/lib/dhcp_ddns/Makefile.am
  29. 1 1
      src/lib/dhcp_ddns/tests/Makefile.am
  30. 1 1
      src/lib/dhcpsrv/Makefile.am
  31. 1 1
      src/lib/dhcpsrv/tests/Makefile.am
  32. 1 1
      src/lib/dhcpsrv/testutils/Makefile.am
  33. 1 1
      src/lib/dns/Makefile.am
  34. 1 1
      src/lib/dns/benchmarks/Makefile.am
  35. 1 1
      src/lib/dns/tests/Makefile.am
  36. 1 1
      src/lib/exceptions/Makefile.am
  37. 1 1
      src/lib/exceptions/tests/Makefile.am
  38. 1 1
      src/lib/hooks/Makefile.am
  39. 1 1
      src/lib/log/Makefile.am
  40. 1 1
      src/lib/log/compiler/Makefile.am
  41. 1 1
      src/lib/log/interprocess/Makefile.am
  42. 1 1
      src/lib/log/interprocess/tests/Makefile.am
  43. 6 6
      src/lib/log/logging.dox
  44. 1 1
      src/lib/log/tests/Makefile.am
  45. 1 1
      src/lib/testutils/Makefile.am
  46. 1 1
      src/lib/util/Makefile.am
  47. 1 1
      src/lib/util/io/Makefile.am
  48. 1 1
      src/lib/util/tests/Makefile.am
  49. 1 1
      src/lib/util/threads/Makefile.am
  50. 1 1
      src/lib/util/threads/tests/Makefile.am
  51. 1 1
      src/lib/util/unittests/Makefile.am

+ 24 - 24
configure.ac

@@ -92,7 +92,7 @@ AC_CHECK_DECL([__SUNPRO_CC], [SUNCXX="yes"], [SUNCXX="no"])
 AC_CHECK_DECL([__clang__], [CLANGPP="yes"], [CLANGPP="no"])
 AC_CHECK_DECL([__clang__], [CLANGPP="yes"], [CLANGPP="no"])
 AM_CONDITIONAL(USE_CLANGPP, test "X${CLANGPP}" = "Xyes")
 AM_CONDITIONAL(USE_CLANGPP, test "X${CLANGPP}" = "Xyes")
 
 
-dnl Determine if weare using GNU sed
+dnl Determine if we are using GNU sed
 GNU_SED=no
 GNU_SED=no
 $SED --version 2> /dev/null | grep GNU > /dev/null 2>&1
 $SED --version 2> /dev/null | grep GNU > /dev/null 2>&1
 if test $? -eq 0; then
 if test $? -eq 0; then
@@ -106,9 +106,9 @@ fi
 AX_ISC_RPATH
 AX_ISC_RPATH
 
 
 # Compiler dependent settings: define some mandatory CXXFLAGS here.
 # Compiler dependent settings: define some mandatory CXXFLAGS here.
-# We also use a separate variable B10_CXXFLAGS.  This will (and should) be
+# We also use a separate variable KEA_CXXFLAGS.  This will (and should) be
 # used as the default value for each specific AM_CXXFLAGS:
 # used as the default value for each specific AM_CXXFLAGS:
-# AM_CXXFLAGS = $(B10_CXXFLAGS)
+# AM_CXXFLAGS = $(KEA_CXXFLAGS)
 # AM_CXXFLAGS += ... # add module specific flags
 # AM_CXXFLAGS += ... # add module specific flags
 # We need this so that we can disable some specific compiler warnings per
 # We need this so that we can disable some specific compiler warnings per
 # module basis; since AM_CXXFLAGS are placed before CXXFLAGS, and since
 # module basis; since AM_CXXFLAGS are placed before CXXFLAGS, and since
@@ -117,23 +117,23 @@ AX_ISC_RPATH
 # "override" the default.
 # "override" the default.
 
 
 # This may be used to try linker flags.
 # This may be used to try linker flags.
-AC_DEFUN([BIND10_CXX_TRY_FLAG], [
+AC_DEFUN([KEA_CXX_TRY_FLAG], [
   AC_MSG_CHECKING([whether $CXX supports $1])
   AC_MSG_CHECKING([whether $CXX supports $1])
 
 
-  bind10_save_CXXFLAGS="$CXXFLAGS"
+  kea_save_CXXFLAGS="$CXXFLAGS"
   CXXFLAGS="$CXXFLAGS $1"
   CXXFLAGS="$CXXFLAGS $1"
 
 
   AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void){ return 0;}])],
   AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void){ return 0;}])],
-                 [bind10_cxx_flag=yes], [bind10_cxx_flag=no])
-  CXXFLAGS="$bind10_save_CXXFLAGS"
+                 [kea_cxx_flag=yes], [kea_cxx_flag=no])
+  CXXFLAGS="$kea_save_CXXFLAGS"
 
 
-  if test "x$bind10_cxx_flag" = "xyes"; then
+  if test "x$kea_cxx_flag" = "xyes"; then
     ifelse([$2], , :, [$2])
     ifelse([$2], , :, [$2])
   else
   else
     ifelse([$3], , :, [$3])
     ifelse([$3], , :, [$3])
   fi
   fi
 
 
-  AC_MSG_RESULT([$bind10_cxx_flag])
+  AC_MSG_RESULT([$kea_cxx_flag])
 ])
 ])
 
 
 CXX_VERSION="unknown"
 CXX_VERSION="unknown"
@@ -155,22 +155,22 @@ fi
 # on the source code.
 # on the source code.
 if test "$CLANGPP" = "yes"; then
 if test "$CLANGPP" = "yes"; then
 CXX_VERSION=`$CXX --version 2> /dev/null | head -1`
 CXX_VERSION=`$CXX --version 2> /dev/null | head -1`
-B10_CXXFLAGS="$B10_CXXFLAGS -Qunused-arguments"
+KEA_CXXFLAGS="$KEA_CXXFLAGS -Qunused-arguments"
 fi
 fi
 
 
-BIND10_CXX_TRY_FLAG([-Wno-missing-field-initializers],
+KEA_CXX_TRY_FLAG([-Wno-missing-field-initializers],
 	[WARNING_NO_MISSING_FIELD_INITIALIZERS_CFLAG="-Wno-missing-field-initializers"])
 	[WARNING_NO_MISSING_FIELD_INITIALIZERS_CFLAG="-Wno-missing-field-initializers"])
 AC_SUBST(WARNING_NO_MISSING_FIELD_INITIALIZERS_CFLAG)
 AC_SUBST(WARNING_NO_MISSING_FIELD_INITIALIZERS_CFLAG)
 
 
 # gcc specific settings:
 # gcc specific settings:
 if test "X$GXX" = "Xyes"; then
 if test "X$GXX" = "Xyes"; then
 CXX_VERSION=`$CXX --version 2> /dev/null | head -1`
 CXX_VERSION=`$CXX --version 2> /dev/null | head -1`
-B10_CXXFLAGS="$B10_CXXFLAGS -Wall -Wextra -Wnon-virtual-dtor -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare"
+KEA_CXXFLAGS="$KEA_CXXFLAGS -Wall -Wextra -Wnon-virtual-dtor -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare"
 case "$host" in
 case "$host" in
 *-solaris*)
 *-solaris*)
 	MULTITHREADING_FLAG=-pthreads
 	MULTITHREADING_FLAG=-pthreads
 	# In Solaris, IN6ADDR_ANY_INIT and IN6ADDR_LOOPBACK_INIT need -Wno-missing-braces
 	# In Solaris, IN6ADDR_ANY_INIT and IN6ADDR_LOOPBACK_INIT need -Wno-missing-braces
-	B10_CXXFLAGS="$B10_CXXFLAGS -Wno-missing-braces"
+	KEA_CXXFLAGS="$KEA_CXXFLAGS -Wno-missing-braces"
 	;;
 	;;
 *)
 *)
 	MULTITHREADING_FLAG=-pthread
 	MULTITHREADING_FLAG=-pthread
@@ -195,7 +195,7 @@ werror_ok=0
 # translation unit.  For these versions we have to disable -Werror.
 # translation unit.  For these versions we have to disable -Werror.
 if test $with_werror = 1; then
 if test $with_werror = 1; then
    CXXFLAGS_SAVED="$CXXFLAGS"
    CXXFLAGS_SAVED="$CXXFLAGS"
-   CXXFLAGS="$CXXFLAGS $B10_CXXFLAGS -Werror"
+   CXXFLAGS="$CXXFLAGS $KEA_CXXFLAGS -Werror"
    AC_MSG_CHECKING(for in-TU anonymous namespace breakage)
    AC_MSG_CHECKING(for in-TU anonymous namespace breakage)
    # We use struct, not class, here, because some compilers complain about
    # We use struct, not class, here, because some compilers complain about
    # "unused private members", causing a false positive.
    # "unused private members", causing a false positive.
@@ -203,7 +203,7 @@ if test $with_werror = 1; then
    namespace isc {struct Bar {Foo foo_;};} ],,
    namespace isc {struct Bar {Foo foo_;};} ],,
 	[AC_MSG_RESULT(no)
 	[AC_MSG_RESULT(no)
 	 werror_ok=1
 	 werror_ok=1
-	 B10_CXXFLAGS="$B10_CXXFLAGS -Werror"],
+	 KEA_CXXFLAGS="$KEA_CXXFLAGS -Werror"],
 	[AC_MSG_RESULT(yes)])
 	[AC_MSG_RESULT(yes)])
    CXXFLAGS="$CXXFLAGS_SAVED"
    CXXFLAGS="$CXXFLAGS_SAVED"
 fi
 fi
@@ -224,13 +224,13 @@ if test $enable_static_link = yes -a $enable_static = no; then
 	AC_MSG_ERROR([--enable-static-link requires --enable-static])
 	AC_MSG_ERROR([--enable-static-link requires --enable-static])
 fi
 fi
 if test $enable_shared = no; then
 if test $enable_shared = no; then
-	AC_MSG_ERROR([BIND 10 requires shared libraries to be built])
+	AC_MSG_ERROR([Kea requires shared libraries to be built])
 fi
 fi
 
 
 # OS dependent configuration
 # OS dependent configuration
 SET_ENV_LIBRARY_PATH=no
 SET_ENV_LIBRARY_PATH=no
 ENV_LIBRARY_PATH=LD_LIBRARY_PATH
 ENV_LIBRARY_PATH=LD_LIBRARY_PATH
-bind10_undefined_pthread_behavior=no
+kea_undefined_pthread_behavior=no
 
 
 case "$host" in
 case "$host" in
 *-solaris*)
 *-solaris*)
@@ -242,7 +242,7 @@ case "$host" in
 	# Destroying locked mutexes, condition variables being waited
 	# Destroying locked mutexes, condition variables being waited
 	# on, etc. are undefined behavior on Solaris, so we set it as
 	# on, etc. are undefined behavior on Solaris, so we set it as
 	# such here.
 	# such here.
-	bind10_undefined_pthread_behavior=yes
+	kea_undefined_pthread_behavior=yes
 	;;
 	;;
 *-apple-darwin*)
 *-apple-darwin*)
 	# Starting with OSX 10.7 (Lion) we must choose which IPv6 API to use
 	# Starting with OSX 10.7 (Lion) we must choose which IPv6 API to use
@@ -263,7 +263,7 @@ case "$host" in
 	#endif
 	#endif
 	#endif
 	#endif
 	return 1;
 	return 1;
-	}],[bind10_undefined_pthread_behavior=yes],[],[])
+	}],[kea_undefined_pthread_behavior=yes],[],[])
 
 
 	# libtool doesn't work perfectly with Darwin: libtool embeds the
 	# libtool doesn't work perfectly with Darwin: libtool embeds the
 	# final install path in dynamic libraries and our loadable python
 	# final install path in dynamic libraries and our loadable python
@@ -287,7 +287,7 @@ esac
 AM_CONDITIONAL(SET_ENV_LIBRARY_PATH, test $SET_ENV_LIBRARY_PATH = yes)
 AM_CONDITIONAL(SET_ENV_LIBRARY_PATH, test $SET_ENV_LIBRARY_PATH = yes)
 AC_SUBST(SET_ENV_LIBRARY_PATH)
 AC_SUBST(SET_ENV_LIBRARY_PATH)
 AC_SUBST(ENV_LIBRARY_PATH)
 AC_SUBST(ENV_LIBRARY_PATH)
-if [ test $bind10_undefined_pthread_behavior = "yes" ]; then
+if [ test $kea_undefined_pthread_behavior = "yes" ]; then
    AC_DEFINE([HAS_UNDEFINED_PTHREAD_BEHAVIOR], [1], [Does this platform have some undefined pthreads behavior?])
    AC_DEFINE([HAS_UNDEFINED_PTHREAD_BEHAVIOR], [1], [Does this platform have some undefined pthreads behavior?])
 fi
 fi
 
 
@@ -341,10 +341,10 @@ fi
 
 
 # produce PIC unless we disable shared libraries. need this for python bindings.
 # produce PIC unless we disable shared libraries. need this for python bindings.
 if test $enable_shared != "no" -a "X$GXX" = "Xyes"; then
 if test $enable_shared != "no" -a "X$GXX" = "Xyes"; then
-   B10_CXXFLAGS="$B10_CXXFLAGS -fPIC"
+   KEA_CXXFLAGS="$KEA_CXXFLAGS -fPIC"
 fi
 fi
 
 
-AC_SUBST(B10_CXXFLAGS)
+AC_SUBST(KEA_CXXFLAGS)
 
 
 # Checks for libraries.
 # Checks for libraries.
 
 
@@ -1007,7 +1007,7 @@ LIBS=$LIBS_SAVED
 #
 #
 # Configure Boost header path
 # Configure Boost header path
 #
 #
-AX_BOOST_FOR_BIND10
+AX_BOOST_FOR_KEA
 # Boost offset_ptr is required in one library and not optional right now, so
 # Boost offset_ptr is required in one library and not optional right now, so
 # we unconditionally fail here if it doesn't work.
 # we unconditionally fail here if it doesn't work.
 if test "$BOOST_OFFSET_PTR_WOULDFAIL" = "yes" -a "$werror_ok" = 1; then
 if test "$BOOST_OFFSET_PTR_WOULDFAIL" = "yes" -a "$werror_ok" = 1; then
@@ -1518,7 +1518,7 @@ C++ Compiler:
   CPPFLAGS:        ${CPPFLAGS}
   CPPFLAGS:        ${CPPFLAGS}
   CXXFLAGS:        ${CXXFLAGS}
   CXXFLAGS:        ${CXXFLAGS}
   LDFLAGS:         ${LDFLAGS}
   LDFLAGS:         ${LDFLAGS}
-  B10_CXXFLAGS:    ${B10_CXXFLAGS}
+  KEA_CXXFLAGS:    ${KEA_CXXFLAGS}
 END
 END
 
 
 if test "$PYTHON" != "no" ; then
 if test "$PYTHON" != "no" ; then

+ 1 - 1
m4macros/Makefile.am

@@ -1 +1 @@
-EXTRA_DIST  = ax_boost_for_bind10.m4
+EXTRA_DIST  = ax_boost_for_kea.m4

+ 3 - 3
m4macros/ax_boost_for_bind10.m4

@@ -1,4 +1,4 @@
-dnl @synopsis AX_BOOST_FOR_BIND10
+dnl @synopsis AX_BOOST_FOR_KEA
 dnl
 dnl
 dnl Test for the Boost C++ header files intended to be used within BIND 10
 dnl Test for the Boost C++ header files intended to be used within BIND 10
 dnl
 dnl
@@ -37,7 +37,7 @@ dnl                        causes segfaults in offset_ptr implementation when
 dnl                        compiled by GCC with optimisations enabled.
 dnl                        compiled by GCC with optimisations enabled.
 dnl                        See ticket no. 3025 for details.
 dnl                        See ticket no. 3025 for details.
 
 
-AC_DEFUN([AX_BOOST_FOR_BIND10], [
+AC_DEFUN([AX_BOOST_FOR_KEA], [
 AC_LANG_SAVE
 AC_LANG_SAVE
 AC_LANG([C++])
 AC_LANG([C++])
 
 
@@ -203,4 +203,4 @@ AC_MSG_RESULT([$BOOST_VERSION])
 
 
 CPPFLAGS="$CPPFLAGS_SAVED"
 CPPFLAGS="$CPPFLAGS_SAVED"
 AC_LANG_RESTORE
 AC_LANG_RESTORE
-])dnl AX_BOOST_FOR_BIND10
+])dnl AX_BOOST_FOR_KEA

+ 1 - 1
src/bin/d2/Makefile.am

@@ -4,7 +4,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS += -I$(top_srcdir)/src/bin -I$(top_builddir)/src/bin
 AM_CPPFLAGS += -I$(top_srcdir)/src/bin -I$(top_builddir)/src/bin
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 if USE_CLANGPP
 if USE_CLANGPP
 # Disable unused parameter warning caused by some Boost headers when compiling with clang
 # Disable unused parameter warning caused by some Boost headers when compiling with clang
 AM_CXXFLAGS += -Wno-unused-parameter
 AM_CXXFLAGS += -Wno-unused-parameter

+ 1 - 1
src/bin/d2/tests/Makefile.am

@@ -32,7 +32,7 @@ CLEANFILES = $(builddir)/interfaces.txt $(builddir)/logger_lockfile
 
 
 DISTCLEANFILES = d2_process_tests.sh
 DISTCLEANFILES = d2_process_tests.sh
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 if USE_CLANGPP
 if USE_CLANGPP
 # Disable unused parameter warning caused by some Boost headers when compiling with clang
 # Disable unused parameter warning caused by some Boost headers when compiling with clang
 AM_CXXFLAGS += -Wno-unused-parameter
 AM_CXXFLAGS += -Wno-unused-parameter

+ 1 - 1
src/bin/dhcp4/Makefile.am

@@ -4,7 +4,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS += -I$(top_srcdir)/src/bin -I$(top_builddir)/src/bin
 AM_CPPFLAGS += -I$(top_srcdir)/src/bin -I$(top_builddir)/src/bin
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 if USE_CLANGPP
 if USE_CLANGPP
 # Disable unused parameter warning caused by some Boost headers when compiling with clang
 # Disable unused parameter warning caused by some Boost headers when compiling with clang
 AM_CXXFLAGS += -Wno-unused-parameter
 AM_CXXFLAGS += -Wno-unused-parameter

+ 1 - 1
src/bin/dhcp4/tests/Makefile.am

@@ -33,7 +33,7 @@ CLEANFILES += *.json *.log
 
 
 DISTCLEANFILES = dhcp4_process_tests.sh
 DISTCLEANFILES = dhcp4_process_tests.sh
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 if USE_CLANGPP
 if USE_CLANGPP
 # Disable unused parameter warning caused by some Boost headers when compiling with clang
 # Disable unused parameter warning caused by some Boost headers when compiling with clang
 AM_CXXFLAGS += -Wno-unused-parameter
 AM_CXXFLAGS += -Wno-unused-parameter

+ 1 - 1
src/bin/dhcp6/Makefile.am

@@ -5,7 +5,7 @@ AM_CPPFLAGS += -I$(top_srcdir)/src/bin -I$(top_builddir)/src/bin
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/cc -I$(top_builddir)/src/lib/cc
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/cc -I$(top_builddir)/src/lib/cc
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 if USE_CLANGPP
 if USE_CLANGPP
 # Disable unused parameter warning caused by some Boost headers when compiling with clang
 # Disable unused parameter warning caused by some Boost headers when compiling with clang
 AM_CXXFLAGS += -Wno-unused-parameter
 AM_CXXFLAGS += -Wno-unused-parameter

+ 1 - 1
src/bin/dhcp6/tests/Makefile.am

@@ -31,7 +31,7 @@ CLEANFILES += *.json *.log
 
 
 DISTCLEANFILES = dhcp6_process_tests.sh
 DISTCLEANFILES = dhcp6_process_tests.sh
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 if USE_CLANGPP
 if USE_CLANGPP
 # Disable unused parameter warning caused by some Boost headers when compiling with clang
 # Disable unused parameter warning caused by some Boost headers when compiling with clang
 AM_CXXFLAGS += -Wno-unused-parameter
 AM_CXXFLAGS += -Wno-unused-parameter

+ 6 - 4
src/bin/keactrl/keactrl.in

@@ -166,12 +166,14 @@ run_conditional() {
 ### Script starts here ###
 ### Script starts here ###
 
 
 # Configure logger to log messages into the file.
 # Configure logger to log messages into the file.
-# Do not set destination if the B10_LOGGER_DESTINATION is set,
+# Do not set destination if the KEA_LOGGER_DESTINATION is set,
 # because a unit test could have set this to some other location.
 # because a unit test could have set this to some other location.
-# @todo Rely on the Kea configuration file once #3427 is done.
-if [ -z ${B10_LOGGER_DESTINATION} ]; then
+# Note that when the configuration is applied this location may be
+# altered and only the handful of initial messages will be logged
+# to the default file.
+if [ -z ${KEA_LOGGER_DESTINATION} ]; then
     prefix=@prefix@
     prefix=@prefix@
-    export B10_LOGGER_DESTINATION=@localstatedir@/@PACKAGE@/kea.log
+    export KEA_LOGGER_DESTINATION=@localstatedir@/@PACKAGE@/kea.log
 fi
 fi
 
 
 command=${1}
 command=${1}

+ 1 - 1
src/bin/perfdhcp/Makefile.am

@@ -4,7 +4,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/log -I$(top_builddir)/src/lib/log
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/log -I$(top_builddir)/src/lib/log
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 # Some versions of GCC warn about some versions of Boost regarding
 # Some versions of GCC warn about some versions of Boost regarding
 # missing initializer for members in its posix_time.
 # missing initializer for members in its posix_time.

+ 1 - 1
src/bin/perfdhcp/tests/Makefile.am

@@ -4,7 +4,7 @@ AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS += -I$(srcdir)/.. -I$(builddir)/..
 AM_CPPFLAGS += -I$(srcdir)/.. -I$(builddir)/..
 AM_CPPFLAGS += -DTEST_DATA_DIR=\"$(abs_srcdir)/testdata\"
 AM_CPPFLAGS += -DTEST_DATA_DIR=\"$(abs_srcdir)/testdata\"
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 if USE_STATIC_LINK
 if USE_STATIC_LINK
 AM_LDFLAGS = -static
 AM_LDFLAGS = -static

+ 1 - 1
src/bin/sockcreator/Makefile.am

@@ -2,7 +2,7 @@ SUBDIRS = . tests
 
 
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 if USE_STATIC_LINK
 if USE_STATIC_LINK
 AM_LDFLAGS = -static
 AM_LDFLAGS = -static

+ 1 - 1
src/bin/sockcreator/tests/Makefile.am

@@ -2,7 +2,7 @@ CLEANFILES = *.gcno *.gcda
 
 
 AM_CPPFLAGS  = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS  = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
-AM_CXXFLAGS  = $(B10_CXXFLAGS)
+AM_CXXFLAGS  = $(KEA_CXXFLAGS)
 
 
 if USE_STATIC_LINK
 if USE_STATIC_LINK
 AM_LDFLAGS = -static
 AM_LDFLAGS = -static

+ 1 - 1
src/hooks/dhcp/user_chk/Makefile.am

@@ -2,7 +2,7 @@ SUBDIRS = . tests
 
 
 AM_CPPFLAGS  = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS  = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
-AM_CXXFLAGS  = $(B10_CXXFLAGS)
+AM_CXXFLAGS  = $(KEA_CXXFLAGS)
 
 
 # Some versions of GCC warn about some versions of Boost regarding
 # Some versions of GCC warn about some versions of Boost regarding
 # missing initializer for members in its posix_time.
 # missing initializer for members in its posix_time.

+ 1 - 1
src/hooks/dhcp/user_chk/tests/Makefile.am

@@ -6,7 +6,7 @@ AM_CPPFLAGS += $(BOOST_INCLUDES) $(CRYPTO_CFLAGS) $(CRYPTO_INCLUDES)
 AM_CPPFLAGS += -DTEST_DATA_BUILDDIR=\"$(abs_top_srcdir)/src/hooks/dhcp/user_chk/tests\"
 AM_CPPFLAGS += -DTEST_DATA_BUILDDIR=\"$(abs_top_srcdir)/src/hooks/dhcp/user_chk/tests\"
 AM_CPPFLAGS += -DINSTALL_PROG=\"$(abs_top_srcdir)/install-sh\"
 AM_CPPFLAGS += -DINSTALL_PROG=\"$(abs_top_srcdir)/install-sh\"
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 # Some versions of GCC warn about some versions of Boost regarding
 # Some versions of GCC warn about some versions of Boost regarding
 # missing initializer for members in its posix_time.
 # missing initializer for members in its posix_time.

+ 2 - 2
src/lib/asiodns/Makefile.am

@@ -6,7 +6,7 @@ AM_CPPFLAGS += -I$(top_srcdir)/src/lib/dns -I$(top_builddir)/src/lib/dns
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/asiolink -I$(top_builddir)/src/lib/asiolink
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/asiolink -I$(top_builddir)/src/lib/asiolink
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/util -I$(top_builddir)/src/lib/util
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/util -I$(top_builddir)/src/lib/util
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 CLEANFILES = *.gcno *.gcda asiodns_messages.h asiodns_messages.cc s-messages
 CLEANFILES = *.gcno *.gcda asiodns_messages.h asiodns_messages.cc s-messages
 
 
@@ -36,7 +36,7 @@ nodist_libkea_asiodns_la_SOURCES = asiodns_messages.cc asiodns_messages.h
 EXTRA_DIST = asiodns_messages.mes
 EXTRA_DIST = asiodns_messages.mes
 
 
 # Note: the ordering matters: -Wno-... must follow -Wextra (defined in
 # Note: the ordering matters: -Wno-... must follow -Wextra (defined in
-# B10_CXXFLAGS)
+# KEA_CXXFLAGS)
 libkea_asiodns_la_CXXFLAGS = $(AM_CXXFLAGS)
 libkea_asiodns_la_CXXFLAGS = $(AM_CXXFLAGS)
 libkea_asiodns_la_CPPFLAGS = $(AM_CPPFLAGS)
 libkea_asiodns_la_CPPFLAGS = $(AM_CPPFLAGS)
 libkea_asiodns_la_LIBADD  = $(top_builddir)/src/lib/asiolink/libkea-asiolink.la
 libkea_asiodns_la_LIBADD  = $(top_builddir)/src/lib/asiolink/libkea-asiolink.la

+ 2 - 2
src/lib/asiodns/tests/Makefile.am

@@ -4,7 +4,7 @@ AM_CPPFLAGS += -I$(top_builddir)/src/lib/dns -I$(top_srcdir)/src/bin
 AM_CPPFLAGS += -I$(top_builddir)/src/lib/cc  -I$(top_builddir)/src/lib/util
 AM_CPPFLAGS += -I$(top_builddir)/src/lib/cc  -I$(top_builddir)/src/lib/util
 AM_CPPFLAGS += -DTEST_DATA_DIR=\"$(srcdir)/testdata\"
 AM_CPPFLAGS += -DTEST_DATA_DIR=\"$(srcdir)/testdata\"
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 if USE_STATIC_LINK
 if USE_STATIC_LINK
 AM_LDFLAGS = -static
 AM_LDFLAGS = -static
@@ -39,7 +39,7 @@ run_unittests_LDADD += $(top_builddir)/src/lib/asiodns/libkea-asiodns.la
 run_unittests_LDFLAGS = $(AM_LDFLAGS) $(GTEST_LDFLAGS)
 run_unittests_LDFLAGS = $(AM_LDFLAGS) $(GTEST_LDFLAGS)
 
 
 # Note: the ordering matters: -Wno-... must follow -Wextra (defined in
 # Note: the ordering matters: -Wno-... must follow -Wextra (defined in
-# B10_CXXFLAGS)
+# KEA_CXXFLAGS)
 run_unittests_CXXFLAGS = $(AM_CXXFLAGS)
 run_unittests_CXXFLAGS = $(AM_CXXFLAGS)
 if USE_GXX
 if USE_GXX
 run_unittests_CXXFLAGS += -Wno-unused-parameter
 run_unittests_CXXFLAGS += -Wno-unused-parameter

+ 2 - 2
src/lib/asiolink/Makefile.am

@@ -3,7 +3,7 @@ SUBDIRS = . tests
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 CLEANFILES = *.gcno *.gcda
 CLEANFILES = *.gcno *.gcda
 
 
@@ -35,7 +35,7 @@ libkea_asiolink_la_SOURCES += udp_socket.h
 libkea_asiolink_la_SOURCES += local_socket.h local_socket.cc
 libkea_asiolink_la_SOURCES += local_socket.h local_socket.cc
 
 
 # Note: the ordering matters: -Wno-... must follow -Wextra (defined in
 # Note: the ordering matters: -Wno-... must follow -Wextra (defined in
-# B10_CXXFLAGS)
+# KEA_CXXFLAGS)
 libkea_asiolink_la_CXXFLAGS = $(AM_CXXFLAGS)
 libkea_asiolink_la_CXXFLAGS = $(AM_CXXFLAGS)
 libkea_asiolink_la_CPPFLAGS = $(AM_CPPFLAGS)
 libkea_asiolink_la_CPPFLAGS = $(AM_CPPFLAGS)
 libkea_asiolink_la_LIBADD = $(top_builddir)/src/lib/exceptions/libkea-exceptions.la
 libkea_asiolink_la_LIBADD = $(top_builddir)/src/lib/exceptions/libkea-exceptions.la

+ 2 - 2
src/lib/asiolink/tests/Makefile.am

@@ -4,7 +4,7 @@ AM_CPPFLAGS += -I$(top_builddir)/src/lib/util -I$(top_srcdir)/src/util
 AM_CPPFLAGS += -I$(top_builddir)/src/lib/cc
 AM_CPPFLAGS += -I$(top_builddir)/src/lib/cc
 AM_CPPFLAGS += -DTEST_DATA_DIR=\"$(srcdir)/testdata\"
 AM_CPPFLAGS += -DTEST_DATA_DIR=\"$(srcdir)/testdata\"
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 if USE_STATIC_LINK
 if USE_STATIC_LINK
 AM_LDFLAGS = -static
 AM_LDFLAGS = -static
@@ -48,7 +48,7 @@ run_unittests_LDADD += $(GTEST_LDADD)
 run_unittests_LDFLAGS = $(AM_LDFLAGS) $(GTEST_LDFLAGS)
 run_unittests_LDFLAGS = $(AM_LDFLAGS) $(GTEST_LDFLAGS)
 
 
 # Note: the ordering matters: -Wno-... must follow -Wextra (defined in
 # Note: the ordering matters: -Wno-... must follow -Wextra (defined in
-# B10_CXXFLAGS)
+# KEA_CXXFLAGS)
 run_unittests_CXXFLAGS = $(AM_CXXFLAGS)
 run_unittests_CXXFLAGS = $(AM_CXXFLAGS)
 if USE_GXX
 if USE_GXX
 run_unittests_CXXFLAGS += -Wno-unused-parameter
 run_unittests_CXXFLAGS += -Wno-unused-parameter

+ 1 - 1
src/lib/cc/Makefile.am

@@ -4,7 +4,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/dns -I$(top_builddir)/src/lib/dns
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/dns -I$(top_builddir)/src/lib/dns
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 if USE_GXX
 if USE_GXX
 # ASIO header files used in session.cc will trigger the "unused-parameter"
 # ASIO header files used in session.cc will trigger the "unused-parameter"
 # warning.  Unfortunately there doesn't seem to be an easy way to selectively
 # warning.  Unfortunately there doesn't seem to be an easy way to selectively

+ 1 - 1
src/lib/cc/tests/Makefile.am

@@ -2,7 +2,7 @@ AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/dns -I$(top_builddir)/src/lib/dns
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/dns -I$(top_builddir)/src/lib/dns
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 if USE_GXX			#XXX: see ../Makefile.am
 if USE_GXX			#XXX: see ../Makefile.am
 AM_CXXFLAGS += -Wno-unused-parameter
 AM_CXXFLAGS += -Wno-unused-parameter
 endif
 endif

+ 1 - 1
src/lib/config/tests/Makefile.am

@@ -3,7 +3,7 @@ SUBDIRS = testdata .
 AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 if USE_STATIC_LINK
 if USE_STATIC_LINK
 AM_LDFLAGS = -static
 AM_LDFLAGS = -static

+ 1 - 1
src/lib/cryptolink/Makefile.am

@@ -2,7 +2,7 @@ SUBDIRS = . tests
 
 
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES) $(CRYPTO_CFLAGS) $(CRYPTO_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES) $(CRYPTO_CFLAGS) $(CRYPTO_INCLUDES)
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 CLEANFILES = *.gcno *.gcda
 CLEANFILES = *.gcno *.gcda
 
 

+ 1 - 1
src/lib/cryptolink/tests/Makefile.am

@@ -2,7 +2,7 @@ SUBDIRS = .
 
 
 AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 if USE_STATIC_LINK
 if USE_STATIC_LINK
 AM_LDFLAGS = -static
 AM_LDFLAGS = -static

+ 1 - 1
src/lib/dhcp/Makefile.am

@@ -2,7 +2,7 @@ SUBDIRS = . tests
 
 
 AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 # Some versions of GCC warn about some versions of Boost regarding
 # Some versions of GCC warn about some versions of Boost regarding
 # missing initializer for members in its posix_time.
 # missing initializer for members in its posix_time.

+ 1 - 1
src/lib/dhcp/tests/Makefile.am

@@ -5,7 +5,7 @@ AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += -DTEST_DATA_BUILDDIR=\"$(abs_top_builddir)/src/lib/dhcp/tests\"
 AM_CPPFLAGS += -DTEST_DATA_BUILDDIR=\"$(abs_top_builddir)/src/lib/dhcp/tests\"
 AM_CPPFLAGS += -DINSTALL_PROG=\"$(abs_top_srcdir)/install-sh\"
 AM_CPPFLAGS += -DINSTALL_PROG=\"$(abs_top_srcdir)/install-sh\"
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 # Some versions of GCC warn about some versions of Boost regarding
 # Some versions of GCC warn about some versions of Boost regarding
 # missing initializer for members in its posix_time.
 # missing initializer for members in its posix_time.

+ 1 - 1
src/lib/dhcp_ddns/Makefile.am

@@ -2,7 +2,7 @@ SUBDIRS = . tests
 
 
 AM_CPPFLAGS  = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS  = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
-AM_CXXFLAGS  = $(B10_CXXFLAGS)
+AM_CXXFLAGS  = $(KEA_CXXFLAGS)
 
 
 # Some versions of GCC warn about some versions of Boost regarding
 # Some versions of GCC warn about some versions of Boost regarding
 # missing initializer for members in its posix_time.
 # missing initializer for members in its posix_time.

+ 1 - 1
src/lib/dhcp_ddns/tests/Makefile.am

@@ -5,7 +5,7 @@ AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += -DTEST_DATA_BUILDDIR=\"$(abs_top_builddir)/src/lib/dhcp_ddns/tests\"
 AM_CPPFLAGS += -DTEST_DATA_BUILDDIR=\"$(abs_top_builddir)/src/lib/dhcp_ddns/tests\"
 AM_CPPFLAGS += -DINSTALL_PROG=\"$(abs_top_srcdir)/install-sh\"
 AM_CPPFLAGS += -DINSTALL_PROG=\"$(abs_top_srcdir)/install-sh\"
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 # Some versions of GCC warn about some versions of Boost regarding
 # Some versions of GCC warn about some versions of Boost regarding
 # missing initializer for members in its posix_time.
 # missing initializer for members in its posix_time.

+ 1 - 1
src/lib/dhcpsrv/Makefile.am

@@ -12,7 +12,7 @@ if HAVE_PGSQL
 AM_CPPFLAGS += $(PGSQL_CPPFLAGS)
 AM_CPPFLAGS += $(PGSQL_CPPFLAGS)
 endif
 endif
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 # Define rule to build logging source files from message file
 # Define rule to build logging source files from message file
 dhcpsrv_messages.h dhcpsrv_messages.cc: s-messages
 dhcpsrv_messages.h dhcpsrv_messages.cc: s-messages

+ 1 - 1
src/lib/dhcpsrv/tests/Makefile.am

@@ -6,7 +6,7 @@ AM_CPPFLAGS += -DTEST_DATA_BUILDDIR=\"$(abs_top_builddir)/src/lib/dhcpsrv/tests\
 AM_CPPFLAGS += -DDHCP_DATA_DIR=\"$(abs_top_builddir)/src/lib/dhcpsrv/tests\"
 AM_CPPFLAGS += -DDHCP_DATA_DIR=\"$(abs_top_builddir)/src/lib/dhcpsrv/tests\"
 AM_CPPFLAGS += -DINSTALL_PROG=\"$(abs_top_srcdir)/install-sh\"
 AM_CPPFLAGS += -DINSTALL_PROG=\"$(abs_top_srcdir)/install-sh\"
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 # Some versions of GCC warn about some versions of Boost regarding
 # Some versions of GCC warn about some versions of Boost regarding
 # missing initializer for members in its posix_time.
 # missing initializer for members in its posix_time.

+ 1 - 1
src/lib/dhcpsrv/testutils/Makefile.am

@@ -3,7 +3,7 @@ SUBDIRS = .
 AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 if USE_STATIC_LINK
 if USE_STATIC_LINK
 AM_LDFLAGS = -static
 AM_LDFLAGS = -static

+ 1 - 1
src/lib/dns/Makefile.am

@@ -4,7 +4,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/dns -I$(top_builddir)/src/lib/dns
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/dns -I$(top_builddir)/src/lib/dns
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/util -I$(top_builddir)/src/lib/util
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/util -I$(top_builddir)/src/lib/util
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 CLEANFILES = *.gcno *.gcda
 CLEANFILES = *.gcno *.gcda
 CLEANFILES += s-rdatacode
 CLEANFILES += s-rdatacode

+ 1 - 1
src/lib/dns/benchmarks/Makefile.am

@@ -1,7 +1,7 @@
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 if USE_STATIC_LINK
 if USE_STATIC_LINK
 AM_LDFLAGS = -static
 AM_LDFLAGS = -static

+ 1 - 1
src/lib/dns/tests/Makefile.am

@@ -6,7 +6,7 @@ AM_CPPFLAGS += -I$(top_srcdir)/src/lib/dns -I$(top_builddir)/src/lib/dns
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/util -I$(top_builddir)/src/lib/util
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/util -I$(top_builddir)/src/lib/util
 AM_CPPFLAGS += -DTEST_DATA_SRCDIR=\"$(abs_top_srcdir)/src/lib/dns/tests/testdata\"
 AM_CPPFLAGS += -DTEST_DATA_SRCDIR=\"$(abs_top_srcdir)/src/lib/dns/tests/testdata\"
 AM_CPPFLAGS += -DTEST_DATA_BUILDDIR=\"$(abs_top_builddir)/src/lib/dns/tests/testdata\"
 AM_CPPFLAGS += -DTEST_DATA_BUILDDIR=\"$(abs_top_builddir)/src/lib/dns/tests/testdata\"
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 if USE_STATIC_LINK
 if USE_STATIC_LINK
 AM_LDFLAGS = -static
 AM_LDFLAGS = -static

+ 1 - 1
src/lib/exceptions/Makefile.am

@@ -1,7 +1,7 @@
 SUBDIRS = . tests
 SUBDIRS = . tests
 
 
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
-AM_CXXFLAGS=$(B10_CXXFLAGS)
+AM_CXXFLAGS=$(KEA_CXXFLAGS)
 
 
 lib_LTLIBRARIES = libkea-exceptions.la
 lib_LTLIBRARIES = libkea-exceptions.la
 libkea_exceptions_la_SOURCES = exceptions.h exceptions.cc
 libkea_exceptions_la_SOURCES = exceptions.h exceptions.cc

+ 1 - 1
src/lib/exceptions/tests/Makefile.am

@@ -1,7 +1,7 @@
 AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/dns -I$(top_builddir)/src/lib/dns
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/dns -I$(top_builddir)/src/lib/dns
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 if USE_STATIC_LINK
 if USE_STATIC_LINK
 AM_LDFLAGS = -static
 AM_LDFLAGS = -static

+ 1 - 1
src/lib/hooks/Makefile.am

@@ -2,7 +2,7 @@ SUBDIRS = . tests
 
 
 AM_CPPFLAGS  = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS  = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
-AM_CXXFLAGS  = $(B10_CXXFLAGS)
+AM_CXXFLAGS  = $(KEA_CXXFLAGS)
 
 
 # Some versions of GCC warn about some versions of Boost regarding
 # Some versions of GCC warn about some versions of Boost regarding
 # missing initializer for members in its posix_time.
 # missing initializer for members in its posix_time.

+ 1 - 1
src/lib/log/Makefile.am

@@ -37,7 +37,7 @@ EXTRA_DIST += logimpl_messages.mes
 EXTRA_DIST += log_messages.mes
 EXTRA_DIST += log_messages.mes
 
 
 # Note: the ordering matters: -Wno-... must follow -Wextra (defined in
 # Note: the ordering matters: -Wno-... must follow -Wextra (defined in
-# B10_CXXFLAGS)
+# KEA_CXXFLAGS)
 libkea_log_la_CXXFLAGS = $(AM_CXXFLAGS)
 libkea_log_la_CXXFLAGS = $(AM_CXXFLAGS)
 if USE_GXX
 if USE_GXX
 libkea_log_la_CXXFLAGS += -Wno-unused-parameter
 libkea_log_la_CXXFLAGS += -Wno-unused-parameter

+ 1 - 1
src/lib/log/compiler/Makefile.am

@@ -3,7 +3,7 @@ SUBDIRS = .
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 if USE_STATIC_LINK
 if USE_STATIC_LINK
 AM_LDFLAGS = -static
 AM_LDFLAGS = -static

+ 1 - 1
src/lib/log/interprocess/Makefile.am

@@ -4,7 +4,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS += -DLOCKFILE_DIR=\"${localstatedir}/${PACKAGE_NAME}\"
 AM_CPPFLAGS += -DLOCKFILE_DIR=\"${localstatedir}/${PACKAGE_NAME}\"
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 
 
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 CLEANFILES = *.gcno *.gcda
 CLEANFILES = *.gcno *.gcda
 
 

+ 1 - 1
src/lib/log/interprocess/tests/Makefile.am

@@ -6,7 +6,7 @@ AM_CPPFLAGS += $(BOOST_INCLUDES)
 # used to bind a UNIX domain socket so we can minimize the risk of exceeding
 # used to bind a UNIX domain socket so we can minimize the risk of exceeding
 # the limit of file name path size.
 # the limit of file name path size.
 AM_CPPFLAGS += -DTEST_DATA_TOPBUILDDIR=\"$(abs_top_builddir)\"
 AM_CPPFLAGS += -DTEST_DATA_TOPBUILDDIR=\"$(abs_top_builddir)\"
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 if USE_STATIC_LINK
 if USE_STATIC_LINK
 AM_LDFLAGS = -static
 AM_LDFLAGS = -static

+ 6 - 6
src/lib/log/logging.dox

@@ -672,24 +672,24 @@ operation is affected by inadvertently-defined environment variables. The
 environment variables are:
 environment variables are:
 
 
 <dl>
 <dl>
-<dt>B10_LOGGER_ROOT</dt>
+<dt>KEA_LOGGER_ROOT</dt>
 <dd>Sets the "root" for the unit test.  If not defined, the name "kea"
 <dd>Sets the "root" for the unit test.  If not defined, the name "kea"
 is used.</dd>
 is used.</dd>
 
 
-<dt>B10_LOGGER_SEVERITY</dt>
+<dt>KEA_LOGGER_SEVERITY</dt>
 <dd>The severity to set for the root logger in the unit test.
 <dd>The severity to set for the root logger in the unit test.
 Valid values are "DEBUG", "INFO", "WARN", "ERROR", "FATAL" and "NONE".
 Valid values are "DEBUG", "INFO", "WARN", "ERROR", "FATAL" and "NONE".
 If not defined, "INFO" is used.</dd>
 If not defined, "INFO" is used.</dd>
 
 
-<dt>B10_LOGGER_DBGLEVEL</dt>
-<dd>If B10_LOGGER_SEVERITY is set to "DEBUG", the debug level.  This can
+<dt>KEA_LOGGER_DBGLEVEL</dt>
+<dd>If KEA_LOGGER_SEVERITY is set to "DEBUG", the debug level.  This can
 be a number between 0 and 99, and defaults to 0.</dd>
 be a number between 0 and 99, and defaults to 0.</dd>
 
 
-<dt>B10_LOGGER_LOCALMSG</dt>
+<dt>KEA_LOGGER_LOCALMSG</dt>
 <dd>If defined, points to a local message file.  The default is not to
 <dd>If defined, points to a local message file.  The default is not to
 use a local message file.</dd>
 use a local message file.</dd>
 
 
-<dt>B10_LOGGER_DESTINATION</dt>
+<dt>KEA_LOGGER_DESTINATION</dt>
 <dd>The location to which log message are written.  This can be one of:
 <dd>The location to which log message are written.  This can be one of:
 <ul>
 <ul>
 <li><b>stdout</b> Message are written to stdout.</li>
 <li><b>stdout</b> Message are written to stdout.</li>

+ 1 - 1
src/lib/log/tests/Makefile.am

@@ -2,7 +2,7 @@ SUBDIRS = .
 
 
 AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 AM_LDADD    =
 AM_LDADD    =
 AM_LDFLAGS  =
 AM_LDFLAGS  =
 
 

+ 1 - 1
src/lib/testutils/Makefile.am

@@ -2,7 +2,7 @@ SUBDIRS = . testdata
 
 
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
-AM_CXXFLAGS=$(B10_CXXFLAGS)
+AM_CXXFLAGS=$(KEA_CXXFLAGS)
 
 
 if HAVE_GTEST
 if HAVE_GTEST
 noinst_LTLIBRARIES = libkea-testutils.la
 noinst_LTLIBRARIES = libkea-testutils.la

+ 1 - 1
src/lib/util/Makefile.am

@@ -4,7 +4,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/util -I$(top_builddir)/src/lib/util
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/util -I$(top_builddir)/src/lib/util
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/exceptions -I$(top_builddir)/src/lib/exceptions
 AM_CPPFLAGS += -I$(top_srcdir)/src/lib/exceptions -I$(top_builddir)/src/lib/exceptions
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 # If we use the shared-memory support, corresponding Boost library may
 # If we use the shared-memory support, corresponding Boost library may
 # cause build failures especially if it's strict about warnings.  We've
 # cause build failures especially if it's strict about warnings.  We've
 # detected it in ./configure and set BOOST_MAPPED_FILE_CXXFLAG to be more
 # detected it in ./configure and set BOOST_MAPPED_FILE_CXXFLAG to be more

+ 1 - 1
src/lib/util/io/Makefile.am

@@ -1,5 +1,5 @@
 SUBDIRS = .
 SUBDIRS = .
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(BOOST_INCLUDES)

+ 1 - 1
src/lib/util/tests/Makefile.am

@@ -7,7 +7,7 @@ AM_CPPFLAGS += -DTEST_DATA_BUILDDIR=\"$(abs_builddir)\"
 # used to bind a UNIX domain socket so we can minimize the risk of exceeding
 # used to bind a UNIX domain socket so we can minimize the risk of exceeding
 # the limit of file name path size.
 # the limit of file name path size.
 AM_CPPFLAGS += -DTEST_DATA_TOPBUILDDIR=\"$(abs_top_builddir)\"
 AM_CPPFLAGS += -DTEST_DATA_TOPBUILDDIR=\"$(abs_top_builddir)\"
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 if USE_STATIC_LINK
 if USE_STATIC_LINK
 AM_LDFLAGS = -static
 AM_LDFLAGS = -static

+ 1 - 1
src/lib/util/threads/Makefile.am

@@ -1,5 +1,5 @@
 SUBDIRS = . tests
 SUBDIRS = . tests
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES) $(MULTITHREADING_FLAG)
 AM_CPPFLAGS += $(BOOST_INCLUDES) $(MULTITHREADING_FLAG)

+ 1 - 1
src/lib/util/threads/tests/Makefile.am

@@ -6,7 +6,7 @@ AM_CPPFLAGS += $(BOOST_INCLUDES) $(MULTITHREADING_FLAG)
 # # used to bind a UNIX domain socket so we can minimize the risk of exceeding
 # # used to bind a UNIX domain socket so we can minimize the risk of exceeding
 # # the limit of file name path size.
 # # the limit of file name path size.
 AM_CPPFLAGS += -DTEST_DATA_TOPBUILDDIR=\"$(abs_top_builddir)\"
 AM_CPPFLAGS += -DTEST_DATA_TOPBUILDDIR=\"$(abs_top_builddir)\"
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 if USE_STATIC_LINK
 if USE_STATIC_LINK
 AM_LDFLAGS = -static
 AM_LDFLAGS = -static

+ 1 - 1
src/lib/util/unittests/Makefile.am

@@ -1,5 +1,5 @@
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
-AM_CXXFLAGS = $(B10_CXXFLAGS)
+AM_CXXFLAGS = $(KEA_CXXFLAGS)
 
 
 noinst_LTLIBRARIES = libutil_unittests.la
 noinst_LTLIBRARIES = libutil_unittests.la
 libutil_unittests_la_SOURCES = fork.h fork.cc resolver.h
 libutil_unittests_la_SOURCES = fork.h fork.cc resolver.h