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 | 5bf6827e474a9ef21fb4226b4d24b86c4252cef2 (patch) | |
tree | 8f5046a3361e37d320dc58362ccbcbd816819719 /configure | |
parent | 82a310fba55ca196a813fbcc91d7af6a0a009745 (diff) | |
download | gdb-5bf6827e474a9ef21fb4226b4d24b86c4252cef2.tar.gz |
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')
-rwxr-xr-x | configure | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/configure b/configure index 6911e011b02..11c91e91450 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; |