diff configure.in @ 4572:046b985ed767 HEAD

Use notify=kqueue automatically only if ioloop=kqueue.
author Timo Sirainen <tss@iki.fi>
date Wed, 16 Aug 2006 16:31:23 +0300
parents 79dd8a12fa05
children ab77182ddf94
line wrap: on
line diff
--- a/configure.in	Wed Aug 16 15:54:55 2006 +0300
+++ b/configure.in	Wed Aug 16 16:31:23 2006 +0300
@@ -480,7 +480,7 @@
   ])
 fi
 
-if test "$notify" = "" || test "$notify" = "kqueue"; then
+if (test "$notify" = "" && test "$ioloop" = kqueue) || test "$notify" = "kqueue"; then
   AC_MSG_CHECKING([if we can use BSD kqueue() notify])
   dnl * BSD kqueue() notify
   if test "$ac_cv_func_kqueue" = yes && test "$ac_cv_func_kevent" = yes ; then