Index: squid/configure.in diff -u squid/configure.in:1.1.1.23 squid/configure.in:1.1.1.23.2.1 --- squid/configure.in:1.1.1.23 Sat Oct 3 02:57:13 1998 +++ squid/configure.in Sun Oct 18 12:48:33 1998 @@ -421,19 +421,25 @@ is broken on some platforms. If you think you are smarter than the configure script, you may enable poll with this option. -], -[ if test "$enableval" = "yes" ; then + --disable-poll Disable the use of poll().], +[ + case "$enableval" in + yes) echo "Forcing poll() to be enabled" ac_cv_func_poll='yes' - fi + ;; + no) + echo "Forcing poll() to be disabled" + ac_cv_func_poll='no' + ;; + esac ]) dnl Disable HTTP violations AC_ARG_ENABLE(http-violations, [ --disable-http-violations This allows you to remove code which is known to - violate the HTTP protocol specification. -], + violate the HTTP protocol specification.], [ if test "$enableval" = "no" ; then echo "Disabling HTTP Violations" AC_DEFINE(HTTP_VIOLATIONS, 0) @@ -446,8 +452,7 @@ AC_ARG_ENABLE(ipf-transparent, [ --enable-ipf-transparent Enable Transparent Proxy support for systems - using IP-Filter network address redirection. -], + using IP-Filter network address redirection.], [ if test "$enableval" = "yes" ; then echo "IP-Filter Transparent Proxy enabled" AC_DEFINE(IPF_TRANSPARENT)