diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7440bce6a0c8..e6a4218e20ea 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2010-02-03 Rainer Orth + + * config.gcc: Reenable check for obsolete targets. + Obsolete alpha*-dec-osf4*, alpha*-dec-osf5.0*, mips-sgi-irix5*, + mips-sgi-irix6.[0-4]*. + 2010-02-02 Nick Clifton * config/rx/rx.c (rx_is_legitimate_constant): Treat a maximum diff --git a/gcc/config.gcc b/gcc/config.gcc index 9c18adf5ef0f..849e66767fcf 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -205,16 +205,21 @@ xm_file= md_file= # Obsolete configurations. -#case ${target} in -# ) -# if test "x$enable_obsolete" != xyes; then -# echo "*** Configuration ${target} is obsolete." >&2 -# echo "*** Specify --enable-obsolete to build it anyway." >&2 -# echo "*** Support will be REMOVED in the next major release of GCC," >&2 -# echo "*** unless a maintainer comes forward." >&2 -# exit 1 -# fi;; -#esac +case ${target} in + alpha*-dec-osf4* \ + | alpha*-dec-osf5.0* \ + | mips-sgi-irix5* \ + | mips-sgi-irix6.[0-4]5* \ + | *-*-solaris2.7* \ + ) + if test "x$enable_obsolete" != xyes; then + echo "*** Configuration ${target} is obsolete." >&2 + echo "*** Specify --enable-obsolete to build it anyway." >&2 + echo "*** Support will be REMOVED in the next major release of GCC," >&2 + echo "*** unless a maintainer comes forward." >&2 + exit 1 + fi;; +esac # Unsupported targets list. Do not put an entry in this list unless # it would otherwise be caught by a more permissive pattern. The list