* configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
sparc-*-solaris2.8]: Disable ${libgcj}.
This commit is contained in:
parent
71bb5ea46b
commit
5e6f1ab22a
|
@ -1,3 +1,8 @@
|
|||
2001-04-26 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
|
||||
sparc-*-solaris2.8]: Disable ${libgcj}.
|
||||
|
||||
2001-04-25 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* configure.in (libgcj_saved): Copy from $libgcj.
|
||||
|
|
23
configure.in
23
configure.in
|
@ -14,7 +14,7 @@
|
|||
## For more information on these two systems, check out the documentation
|
||||
## for 'Autoconf' (autoconf.texi) and 'Configure' (configure.texi).
|
||||
|
||||
# Copyright (C) 1992-99, 2000 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1992-99, 2000, 2001 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by
|
||||
|
@ -720,7 +720,9 @@ case "${target}" in
|
|||
"" | cc*) noconfigdirs="$noconfigdirs emacs emacs19" ;;
|
||||
*) ;;
|
||||
esac
|
||||
noconfigdirs="$noconfigdirs ld shellutils"
|
||||
# According to Alexandre Oliva <aoliva@redhat.com>, libjava won't
|
||||
# build on HP-UX 10.20.
|
||||
noconfigdirs="$noconfigdirs ld shellutils ${libgcj}"
|
||||
;;
|
||||
ia64*-*-elf*)
|
||||
# No gdb support yet.
|
||||
|
@ -863,7 +865,11 @@ case "${target}" in
|
|||
mips*-*-irix6*)
|
||||
# The GNU assembler does not support IRIX 6.
|
||||
# emacs is emacs 18, which does not work on Irix 5 (emacs19 does work)
|
||||
noconfigdirs="$noconfigdirs gas gprof emacs target-libgloss"
|
||||
# Linking libjava exceeds command-line length limits on at least
|
||||
# IRIX 6.2, but not on IRIX 6.5.
|
||||
# Also, boehm-gc won't build on IRIX 6.5, according to Jeffrey Oldham
|
||||
# <oldham@codesourcery.com>
|
||||
noconfigdirs="$noconfigdirs gas gprof emacs target-libgloss ${libgcj}"
|
||||
;;
|
||||
mips*-dec-bsd*)
|
||||
noconfigdirs="$noconfigdirs gprof target-libgloss target-libffi"
|
||||
|
@ -914,6 +920,17 @@ case "${target}" in
|
|||
use_gnu_ld=no
|
||||
fi
|
||||
;;
|
||||
sparc-*-solaris*)
|
||||
case "${host}" in
|
||||
sparc-*-solaris2.8)
|
||||
# According to Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>, libjava
|
||||
# won't build correctly on Solaris 8 if there's a
|
||||
# previously-installed version of GCC in the configured prefix.
|
||||
# This problem does not show up on earlier versions of Solaris.
|
||||
noconfigdirs="$noconfigdirs ${libgcj}"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
v810-*-*)
|
||||
noconfigdirs="$noconfigdirs bfd binutils gas gcc gdb ld ${libstdcxx_version} opcodes target-libgloss target-libffi"
|
||||
;;
|
||||
|
|
Loading…
Reference in New Issue