diff options
author | David Daney <ddaney@avtrex.com> | 2007-09-12 17:51:22 +0000 |
---|---|---|
committer | David Daney <ddaney@avtrex.com> | 2007-09-12 17:51:22 +0000 |
commit | 5566c1fab9b14e0735312da90fbd61e1a406f5a7 (patch) | |
tree | 3bb34f61bf667240b617ad6b7885e4be36c21752 /configure.ac | |
parent | 8462ae85e4fa45aa0efb8b560e02ab21ecf90fd1 (diff) | |
download | gdb-5566c1fab9b14e0735312da90fbd61e1a406f5a7.zip gdb-5566c1fab9b14e0735312da90fbd61e1a406f5a7.tar.gz gdb-5566c1fab9b14e0735312da90fbd61e1a406f5a7.tar.bz2 |
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.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index fb8f710..74238bf 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) |