]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
From: Henrik Nordstrom <hno@hem.passagen.se>
authorwessels <>
Mon, 8 Jun 1998 23:02:39 +0000 (23:02 +0000)
committerwessels <>
Mon, 8 Jun 1998 23:02:39 +0000 (23:02 +0000)
AC_CHECK_FUNC(poll) does not automatically set HAVE_POLL. Use
AC_CHECK_FUNCS instead.

configure.in

index 12e75a7b0ff85915ccc45a0edc4e9621c4e43790..2b019e2fd9a35a876f937f69cf7502c6cb252029 100644 (file)
@@ -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