This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH (tree-ssa): restore bootstrap


Update to fix minor bootstrap breakage injected on 4-14 or 4-17.  Tested on
i386-unknown-freebsd4.9 with libgmp installed from ports.  Installed.

(Now that the gmp tests have been moved to top-level, it may be safe
 to remove the port-specific clause entirely.  However, should g95 be
 built whenever possible using the system's known conventions?)

	* configure.in (*-*-freebsd*): Use with_gmp to "Avoid crusty gmp.h."
	* configure: Rebuilt (with autoconf version 2.13).

Index: configure.in
===================================================================
RCS file: /cvs/gcc/gcc/configure.in,v
retrieving revision 1.161.2.46
diff -c -r1.161.2.46 configure.in
*** configure.in	14 Apr 2004 21:27:59 -0000	1.161.2.46
--- configure.in	23 Apr 2004 00:41:09 -0000
***************
*** 374,381 ****
      ;;
    *-*-freebsd* | *-*-kfreebsd*-gnu)
      noconfigdirs="$noconfigdirs target-newlib target-libgloss"
!     if test -f /usr/local/include/gmp.h; then
!       extra_host_args="--with-gmp=/usr/local"
      fi
  
      # Skip some stuff that's unsupported on some FreeBSD configurations.
--- 374,382 ----
      ;;
    *-*-freebsd* | *-*-kfreebsd*-gnu)
      noconfigdirs="$noconfigdirs target-newlib target-libgloss"
!     if test "x$with_gmp" = x && test "x$with_gmp_dir" = x \
! 	&& test -f /usr/local/include/gmp.h; then
!       with_gmp=/usr/local
      fi
  
      # Skip some stuff that's unsupported on some FreeBSD configurations.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]