configure.in: Remove check for -fuse-divide-subroutine.

* configure.in: Remove check for -fuse-divide-subroutine.
	* configure: Rebuilt.

From-SVN: r38184
This commit is contained in:
Bryce McKinlay 2000-12-11 04:37:14 +00:00 committed by Bryce McKinlay
parent 488d42af6f
commit 0aa9764b5a
3 changed files with 286 additions and 325 deletions

View File

@ -1,3 +1,8 @@
2000-12-11 Bryce McKinlay <bryce@albatross.co.nz>
* configure.in: Remove check for -fuse-divide-subroutine.
* configure: Rebuilt.
2000-12-11 Bryce McKinlay <bryce@albatross.co.nz>
* Makefile.am: Add HashSet.java and java/lang/ref classes.

590
libjava/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -645,22 +645,6 @@ gcjvers="`$GCJ -v 2>&1 | sed -n 's/^.*version \([^ ]*\).*$/\1/p'`"
changequote([,])
AC_DEFINE_UNQUOTED(GCJVERSION, "$gcjvers")
# See if gcj supports -fuse-divide-subroutine. gcc 2.95 does not, and
# we want to continue to support that version.
AC_MSG_CHECKING([whether gcj supports -fuse-divide-subroutine])
cat > conftest.java << 'END'
public class conftest { }
END
use_fuse=yes
$GCJ -classpath $srcdir -fuse-divide-subroutine -fsyntax-only \
conftest.java > /dev/null 2>&1 \
|| use_fuse=no
rm -f conftest.java
if test "$use_fuse" = no; then
DIVIDESPEC=
fi
AC_MSG_RESULT($use_fuse)
AC_SUBST(AM_RUNTESTFLAGS)
dnl Work around a g++ bug. Reported to gcc-bugs@gcc.gnu.org on Jan 22, 2000.