BIND 10 master, updated. 5c61cd71a9423cf90166c057512f6cc168adcfb8 [master] Fix kqueue testcase in configure.ac for OpenBSD

BIND 10 source code commits bind10-changes at lists.isc.org
Fri Mar 16 09:04:29 UTC 2012


The branch, master has been updated
       via  5c61cd71a9423cf90166c057512f6cc168adcfb8 (commit)
      from  b842ace68bb3cebe88c05c72c11dd25d5ebcf9d3 (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 5c61cd71a9423cf90166c057512f6cc168adcfb8
Author: Mukund Sivaraman <muks at isc.org>
Date:   Fri Mar 16 14:33:27 2012 +0530

    [master] Fix kqueue testcase in configure.ac for OpenBSD

-----------------------------------------------------------------------

Summary of changes:
 configure.ac |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

-----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index 72a462f..702b6b9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -814,7 +814,8 @@ if test "X$ac_cv_have_kqueue" = "Xyes"; then
 #include <sys/param.h>
 #include <sys/event.h>],
 [char* udata;
-EV_SET(NULL, 0, 0, 0, 0, 0, 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"



More information about the bind10-changes mailing list