From 6cb88d23dffef042be8a5b59bbf34b9feb688b74 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Thu, 28 Jan 2010 22:18:55 +0000 Subject: [PATCH] (trunk daemon) #2816 "configure script ignores paramter" -- fixed in trunk for 1.83 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index af4b48ca4..344c4b280 100644 --- a/configure.ac +++ b/configure.ac @@ -133,7 +133,7 @@ AC_CHECK_HEADER([sys/inotify.h], [have_inotify="no"]) AC_ARG_WITH([inotify], [AS_HELP_STRING([--with-inotify],[Enable inotify support (default=auto)])], - [want_inotify=${enableval}], + [want_inotify=${withval}], [want_inotify=${have_inotify}]) if test "x$want_inotify" = "xyes" ; then if test "x$have_inotify" = "xyes"; then @@ -148,7 +148,7 @@ AC_CHECK_HEADER([sys/event.h], [have_kqueue="no"]) AC_ARG_WITH([kqueue], [AS_HELP_STRING([--with-kqueue],[Enable kqueue support (default=auto)])], - [want_kqueue=${enableval}], + [want_kqueue=${withval}], [want_kqueue=${have_kqueue}]) if test "x$want_kqueue" = "xyes" ; then if test "x$have_kqueue" = "xyes"; then