-# From configure.in Revision: 1.16
+# From configure.in Revision: 1.17
ac_aux_dir=
for ac_dir in aux $srcdir/aux; do
if test -f $ac_dir/install-sh; then
STD_CFLAGS="-g"
XXXCC=`echo $CC | awk '{print $1}'`
if test "`basename $XXXCC`" = "gcc"; then
- STD_CFLAGS="$STD_CFLAGS -Wall"
+ case "$host" in
+ *-sun-sunos*)
+ # sunos has too many warnings for this to be useful
+ ;;
+ *)
+ STD_CFLAGS="$STD_CFLAGS -Wall"
+ ;;
+ esac
fi
fi
dnl
dnl Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.7)
dnl
-dnl $Id: configure.in,v 1.17 1996/04/16 05:07:10 wessels Exp $
+dnl $Id: configure.in,v 1.18 1996/04/16 18:34:09 wessels Exp $
dnl
dnl
dnl
AC_INIT(src/main.c)
AC_CONFIG_HEADER(include/autoconf.h)
-AC_REVISION($Revision: 1.17 $)dnl
+AC_REVISION($Revision: 1.18 $)dnl
AC_PREFIX_DEFAULT(/usr/local/squid)
AC_CONFIG_AUX_DIR(aux)
STD_CFLAGS="-g"
XXXCC=`echo $CC | awk '{print $1}'`
if test "`basename $XXXCC`" = "gcc"; then
- STD_CFLAGS="$STD_CFLAGS -Wall"
+ case "$host" in
+ *-sun-sunos*)
+ # sunos has too many warnings for this to be useful
+ ;;
+ *)
+ STD_CFLAGS="$STD_CFLAGS -Wall"
+ ;;
+ esac
fi
fi
AC_SUBST(STD_CFLAGS)