BIND 10 master, updated. 4df912c903ef7469b0034f1750de4cf0711e9e2d [master] increase the BIND 10 version to today's date
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Apr 5 17:08:14 UTC 2012
The branch, master has been updated
via 4df912c903ef7469b0034f1750de4cf0711e9e2d (commit)
via 81300648c7274effe356e4ba421cdf3cdab8d316 (commit)
from 8f3e82a987df1e5abc1ab2d4f0785ca3f9ab97ff (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 4df912c903ef7469b0034f1750de4cf0711e9e2d
Author: Jeremy C. Reed <jreed at ISC.org>
Date: Thu Apr 5 12:07:57 2012 -0500
[master] increase the BIND 10 version to today's date
commit 81300648c7274effe356e4ba421cdf3cdab8d316
Author: Jeremy C. Reed <jreed at ISC.org>
Date: Thu Apr 5 12:04:23 2012 -0500
[master] ticket #1823 remove ASIO_DISABLE_KQUEUE hack
We had this for a behavior on NetBSD, the new ASIO (already in our
source tree) has workaround for it.
This is for ticket #1823.
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 25 +------------------------
1 files changed, 1 insertions(+), 24 deletions(-)
-----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index 12ef2e9..324f045 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.59])
-AC_INIT(bind10-devel, 20120316, bind10-dev at isc.org)
+AC_INIT(bind10-devel, 20120405, bind10-dev at isc.org)
AC_CONFIG_SRCDIR(README)
AM_INIT_AUTOMAKE
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])dnl be backward compatible
@@ -924,29 +924,6 @@ CPPFLAGS="$CPPFLAGS -I\$(top_srcdir)/ext/coroutine"
#
# Disable threads: Currently we don't use them.
CPPFLAGS="$CPPFLAGS -DASIO_DISABLE_THREADS=1"
-#
-# kqueue portability: ASIO uses kqueue by default if it's available (it's
-# generally available in BSD variants). Unfortunately, some public
-# implementation of kqueue forces a conversion from a pointer to an integer,
-# which is prohibited in C++ unless reinterpret_cast, C++'s most evil beast
-# (and ASIO doesn't use it anyway) is used. This will cause build error for
-# some of our C++ files including ASIO header files. The following check
-# detects such cases and tells ASIO not to use kqueue if so.
-AC_CHECK_FUNC(kqueue, ac_cv_have_kqueue=yes, ac_cv_have_kqueue=no)
-if test "X$ac_cv_have_kqueue" = "Xyes"; then
- AC_MSG_CHECKING([whether kqueue EV_SET compiles in C++])
- AC_TRY_COMPILE([
-#include <sys/types.h>
-#include <sys/param.h>
-#include <sys/event.h>],
-[char* udata;
-struct kevent kevent;
-EV_SET(&kevent, 0, 0, 0, 0, 0, udata);],
- [AC_MSG_RESULT(yes)],
- [AC_MSG_RESULT([no, disable kqueue for ASIO])
- CPPFLAGS="$CPPFLAGS -DASIO_DISABLE_KQUEUE=1"
- ])
-fi
# Check for functions that are not available on all platforms
AC_CHECK_FUNCS([pselect])
More information about the bind10-changes
mailing list