diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2002-10-24 23:31:47 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2002-10-24 23:31:47 +0000 |
commit | fcaf83687b5e89943c3713792f630be8221b8035 (patch) | |
tree | d6a2f54e4a2afcbc0ad383e05ed2822bd4e66e94 /configure.in | |
parent | 950a7601d1d4eb6ae308641e25c8ef14a7c7c471 (diff) | |
download | cygnal-fcaf83687b5e89943c3713792f630be8221b8035.tar.gz cygnal-fcaf83687b5e89943c3713792f630be8221b8035.tar.bz2 cygnal-fcaf83687b5e89943c3713792f630be8221b8035.zip |
* configure.in (i[3456]86-*-linux*): Add check to disable
${libgcj} for glibc1.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 87dd2c6dc..6b714947a 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 |