Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Daney <ddaney@caviumnetworks.com>2007-09-12 21:51:22 +0400
committerDavid Daney <ddaney@caviumnetworks.com>2007-09-12 21:51:22 +0400
commit1b410bcf088fb351f9779e6fb4dc2c56e1a73e89 (patch)
treefb9c37fca918c0b11e62dbed9eb4095ccf8d86d2
parent420cb191737b1f33635c062bd30c0a974984af42 (diff)
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.
-rw-r--r--ChangeLog13
-rwxr-xr-xconfigure7
-rw-r--r--configure.ac7
3 files changed, 17 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index b0fab6e92..57beec50e 100644
--- 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
diff --git a/configure b/configure
index 6911e011b..11c91e914 100755
--- 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;
diff --git a/configure.ac b/configure.ac
index fb8f7102a..74238bf2d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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)