2007-09-12 David Daney <ddaney@avtrex.com>
authorDavid Daney <ddaney@avtrex.com>
Wed, 12 Sep 2007 17:51:22 +0000 (17:51 +0000)
committerDavid Daney <ddaney@avtrex.com>
Wed, 12 Sep 2007 17:51:22 +0000 (17:51 +0000)
* configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
enabling libgcj.
* configure: Regenerate.

2007-09-12  Richard Guenther  <rguenther@suse.de>

* configure.ac (--enable-stage1-checking): If neither --enable-checking
nor --disable-checking is provided also turn on yes and types
checking for stage1.
* configure: Re-generate.

ChangeLog
configure
configure.ac

index b0fab6e92835be3b0ba888b83654a6a30f1a1614..57beec50ea66deacaa42aab1321d786a8cb51922 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+2007-09-12  David Daney  <ddaney@avtrex.com>
+
+       * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
+       enabling libgcj.
+       * configure: Regenerate.
+
+2007-09-12  Richard Guenther  <rguenther@suse.de>
+
+       * configure.ac (--enable-stage1-checking): If neither --enable-checking
+       nor --disable-checking is provided also turn on yes and types
+       checking for stage1.
+       * configure: Re-generate.
+
 2007-09-11  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
 
        PR target/33281
index 6911e011b02dc6435cb6995ca77606fb9419aa43..11c91e91450dc4a2784e76a4cc6081027792d726 100755 (executable)
--- a/configure
+++ b/configure
@@ -2519,9 +2519,6 @@ case "${target}" in
   mips*-*-bsd*)
     noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}"
     ;;
-  mips64*-*-linux*)
-    noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
-    ;;
   mips*-*-linux*)
     noconfigdirs="$noconfigdirs target-newlib target-libgloss"
     ;;
@@ -12025,10 +12022,10 @@ if test "${enable_stage1_checking+set}" = set; then
   enableval="$enable_stage1_checking"
   stage1_checking=--enable-checking=${enable_stage1_checking}
 else
-  if test "x$enable_checking" = xno; then
+  if test "x$enable_checking" = xno || test "x$enable_checking" = x; then
   stage1_checking=--enable-checking=yes,types
 else
-  stage1_checking=--enable-checking=types${enable_checking+,}$enable_checking
+  stage1_checking=--enable-checking=$enable_checking,types
 fi
 fi;
 
index fb8f7102a85711d72661e421973925656448a90d..74238bf2de287ceda91f249479f0b7735785539a 100644 (file)
@@ -795,9 +795,6 @@ case "${target}" in
   mips*-*-bsd*)
     noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}"
     ;;
-  mips64*-*-linux*)
-    noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
-    ;;
   mips*-*-linux*)
     noconfigdirs="$noconfigdirs target-newlib target-libgloss"
     ;;
@@ -2646,10 +2643,10 @@ AC_ARG_ENABLE(stage1-checking,
 [  --enable-stage1-checking@<:@=all@:>@   choose additional checking for stage1
                           of the compiler],
 [stage1_checking=--enable-checking=${enable_stage1_checking}],
-[if test "x$enable_checking" = xno; then
+[if test "x$enable_checking" = xno || test "x$enable_checking" = x; then
   stage1_checking=--enable-checking=yes,types
 else
-  stage1_checking=--enable-checking=types${enable_checking+,}$enable_checking
+  stage1_checking=--enable-checking=$enable_checking,types
 fi])
 AC_SUBST(stage1_checking)
 
This page took 0.043838 seconds and 4 git commands to generate.