remove the gcc 2.96 test

This commit is contained in:
Bill Currie 2001-07-09 17:12:09 +00:00
parent 17b6e171fd
commit 43ba9affaa

View file

@ -23,22 +23,6 @@ AC_PROG_CPP
AC_PROG_YACC
AM_PROG_LEX
set $CC
if test "$1" = gcc; then
shift
args="$*"
AC_MSG_CHECKING(for broken gcc)
if test `gcc --version` = 2.96; then
AC_MSG_RESULT(yes. You poor sod, hope you have egcs)
CC="egcs $args"
set $CPP
shift
CPP="egcs $*"
else
AC_MSG_RESULT(no. good.)
fi
fi
dnl We want warnings, lots of warnings...
if test "x$GCC" = xyes; then
CFLAGS="$CFLAGS -Wall -Werror"