--------------------- PatchSet 11486 Date: 2007/06/23 21:23:45 Author: hno Branch: HEAD Tag: (none) Log: Clean up --enable-devpoll. There is no autoprobing for this feauture. Members: configure.in:1.425->1.426 Index: squid/configure.in =================================================================== RCS file: /cvsroot/squid/squid/configure.in,v retrieving revision 1.425 retrieving revision 1.426 diff -u -r1.425 -r1.426 --- squid/configure.in 23 Jun 2007 20:36:11 -0000 1.425 +++ squid/configure.in 23 Jun 2007 21:23:45 -0000 1.426 @@ -1,7 +1,7 @@ dnl dnl Configuration input file for Squid dnl -dnl $Id: configure.in,v 1.425 2007/06/23 20:36:11 hno Exp $ +dnl $Id: configure.in,v 1.426 2007/06/23 21:23:45 hno Exp $ dnl dnl dnl @@ -10,7 +10,7 @@ AM_CONFIG_HEADER(include/autoconf.h) AC_CONFIG_AUX_DIR(cfgaux) AM_INIT_AUTOMAKE -AC_REVISION($Revision: 1.425 $)dnl +AC_REVISION($Revision: 1.426 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AM_MAINTAINER_MODE @@ -929,20 +929,15 @@ dnl Enable devpoll AC_ARG_ENABLE(devpoll, -[ --enable-devpoll Force the use of devpoll even if automatic checks - indicate devpoll may not be supported. - --disable-devpoll Disable devpoll support. ], - +[ --enable-devpoll Use Solaris /dev/poll instead of poll], [ case "$enableval" in yes) echo "Forcing devpoll to be enabled" SELECT_TYPE="devpoll" - ac_cv_func_devpoll='yes' ;; no) echo "Forcing devpoll to be disabled" - ac_cv_func_devpoll='no' ;; esac ])