changeset 4442:9eee24bf2960 HEAD

Fix kqueue notify checking.
author Timo Sirainen <tss@iki.fi>
date Mon, 26 Jun 2006 21:51:50 +0300
parents 0c6a11afec00
children a01337f6509a
files configure.in
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in	Mon Jun 26 20:48:20 2006 +0300
+++ b/configure.in	Mon Jun 26 21:51:50 2006 +0300
@@ -473,7 +473,7 @@
 if test "$notify" = "" || 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
+  if test "$ac_cv_func_kqueue" = yes && test "$ac_cv_func_kevent" = yes ; then
     have_notify=kqueue
     notify=kqueue
     AC_MSG_RESULT("yes")