mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
kgcc should not be used if gcc is 2.96 anymore except on some systems that
are still broken. Using kgcc on systems not broken actually breaks them! Thank you Red Hat Software, another breakage for some people without a portable and reliable fix. We really appreciate it. Are you guys trying to compete with Mandrake for most broken and inconsistant build system? A piece of advice, let them have that feature all to themselves.
This commit is contained in:
parent
3456b5f479
commit
366f3db496
1 changed files with 14 additions and 11 deletions
25
configure.in
25
configure.in
|
@ -70,16 +70,9 @@ set $CC
|
|||
if test "$1" = gcc; then
|
||||
shift
|
||||
args="$*"
|
||||
AC_MSG_CHECKING(for fubared gcc)
|
||||
if test `gcc --version` = 2.96; then
|
||||
AC_MSG_RESULT(yes. You poor sod, hope you have kgcc)
|
||||
CC="kgcc $args"
|
||||
set $CPP
|
||||
shift
|
||||
CPP="kgcc $*"
|
||||
else
|
||||
AC_MSG_RESULT(no. good)
|
||||
fi
|
||||
AC_MSG_CHECKING(for gcc version)
|
||||
CCVER="gcc `gcc --version`"
|
||||
AC_MSG_RESULT($CCVER)
|
||||
fi
|
||||
|
||||
dnl ==================================================================
|
||||
|
@ -1565,7 +1558,17 @@ AC_MSG_RESULT([
|
|||
CD Audio system: $CDTYPE
|
||||
IPv6 networking: $NETTYPE_IPV6
|
||||
Compression support: $HAVE_ZLIB
|
||||
|
||||
])
|
||||
if test "x$CCVER" != "x"; then
|
||||
if test "x$CCVER" = "xgcc 2.96"; then
|
||||
AC_MSG_RESULT([
|
||||
Compiler version: $CCVER (CC=kgcc ./configure may be needed)
|
||||
])
|
||||
else
|
||||
AC_MSG_RESULT([
|
||||
Compiler version: $CCVER
|
||||
])
|
||||
fi
|
||||
Shared game data directory: $sharepath
|
||||
Per-user game data directory: $userpath
|
||||
Plugin load directory: $pluginpath
|
||||
|
|
Loading…
Reference in a new issue