From: wessels <> Date: Mon, 8 Jun 1998 23:02:39 +0000 (+0000) Subject: From: Henrik Nordstrom X-Git-Tag: SQUID_3_0_PRE1~3160 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7e9bec27e3de8e3910123ffeefcbf0e0bcacb4cf;p=thirdparty%2Fsquid.git From: Henrik Nordstrom AC_CHECK_FUNC(poll) does not automatically set HAVE_POLL. Use AC_CHECK_FUNCS instead. --- diff --git a/configure.in b/configure.in index 12e75a7b0f..2b019e2fd9 100644 --- a/configure.in +++ b/configure.in @@ -3,13 +3,13 @@ dnl Configuration input file for Squid dnl dnl Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9) dnl -dnl $Id: configure.in,v 1.131 1998/06/03 16:35:34 rousskov Exp $ +dnl $Id: configure.in,v 1.132 1998/06/08 17:02:39 wessels Exp $ dnl dnl dnl AC_INIT(src/main.c) AC_CONFIG_HEADER(include/autoconf.h) -AC_REVISION($Revision: 1.131 $)dnl +AC_REVISION($Revision: 1.132 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AC_CONFIG_AUX_DIR(cfgaux) @@ -694,7 +694,7 @@ case "$host" in ac_cv_func_poll='no' ;; *) - AC_CHECK_FUNC(poll) + AC_CHECK_FUNCS(poll) ;; esac