summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2002-10-24 23:31:47 +0000
committerHans-Peter Nilsson <hp@axis.com>2002-10-24 23:31:47 +0000
commit5a1301ea37877604a982ac490aaf92b8200e15af (patch)
tree2e5dc5d9cfed0ac2e6fb22e4c33f0d45a456121f
parentf42ee0bd025ed32da1891e0839aad603f715e285 (diff)
downloadbinutils-redhat-5a1301ea37877604a982ac490aaf92b8200e15af.tar.gz
* configure.in (i[3456]86-*-linux*): Add check to disabledrow-cplus-merge-20021025
${libgcj} for glibc1.
-rw-r--r--ChangeLog5
-rw-r--r--configure.in7
2 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index db8247aa18..8a3bf4567a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-10-24 Hans-Peter Nilsson <hp@bitrange.com>
+
+ * configure.in (i[3456]86-*-linux*): Add check to disable
+ ${libgcj} for glibc1.
+
2002-10-07 Svein E. Seldal <Svein.Seldal@solidas.com>
* configure.in: Add tic4x target.
diff --git a/configure.in b/configure.in
index 87dd2c6dc4..6b714947a6 100644
--- a/configure.in
+++ b/configure.in
@@ -422,6 +422,13 @@ case "${target}" in
noconfigdirs="$noconfigdirs target-newlib target-libgloss"
;;
i[3456]86-*-linux*)
+ # The GCC port for glibc1 has no MD_FALLBACK_FRAME_STATE_FOR, so let's
+ # not build java stuff by default.
+ case "${target}" in
+ *-*-*libc1*)
+ noconfigdirs="$noconfigdirs ${libgcj}";;
+ esac
+
# This section makes it possible to build newlib natively on linux.
# If we are using a cross compiler then don't configure newlib.
if test x${is_cross_compiler} != xno ; then