]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
configure.in (i[3456]86-*-linux*): Add check to disable ${libgcj} for glibc1.
authorHans-Peter Nilsson <hp@bitrange.com>
Thu, 24 Oct 2002 23:25:07 +0000 (23:25 +0000)
committerHans-Peter Nilsson <hp@gcc.gnu.org>
Thu, 24 Oct 2002 23:25:07 +0000 (23:25 +0000)
* configure.in (i[3456]86-*-linux*): Add check to disable
${libgcj} for glibc1.

From-SVN: r58511

ChangeLog
configure.in

index b90b07190c0a099c691992ecfae7e2ae51070b3a..01516ecaa2fbddc5ff42db951758046c8fd19421 100644 (file)
--- 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-24  Denis Chertykov  <denisc@overta.ru>
 
        * MAINTAINERS: Add myself as ip2k port maintainer.
index 87dd2c6dc4120799eac36ec250ef42e458195e99..6b714947a6661414af85e192fa90d283080ad7ef 100644 (file)
@@ -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