mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-03-11 10:41:12 +00:00
test for the evil spawn of satan (gcc 2.96) and try to cope
This commit is contained in:
parent
df7e9b9a14
commit
3ea038af68
1 changed files with 10 additions and 0 deletions
10
configure.in
10
configure.in
|
@ -37,6 +37,16 @@ AC_PROG_RANLIB
|
||||||
AC_PROG_INSTALL
|
AC_PROG_INSTALL
|
||||||
AC_PROG_LN_S
|
AC_PROG_LN_S
|
||||||
|
|
||||||
|
set $CC
|
||||||
|
if test "$1" = gcc; then
|
||||||
|
AC_MSG_CHECKING(for fubared gcc)
|
||||||
|
if test `gcc --version` = 2.96; then
|
||||||
|
AC_MSG_RESULT(yes. you poor sod. Hope you have egcs)
|
||||||
|
CC=egcs
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT(no. good)
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
dnl ==================================================================
|
dnl ==================================================================
|
||||||
dnl Checks for system services
|
dnl Checks for system services
|
||||||
|
|
Loading…
Reference in a new issue