This is the mail archive of the
java-patches@sourceware.cygnus.com
mailing list for the Java project.
Patch: message in configure.in
- To: Java Patch List <java-patches at sourceware dot cygnus dot com>
- Subject: Patch: message in configure.in
- From: Tom Tromey <tromey at cygnus dot com>
- Date: 23 Sep 1999 13:34:59 -0600
- Reply-To: tromey at cygnus dot com
I'm checking in the appended patch.
1999-09-23 Tom Tromey <tromey@cygnus.com>
* configure: Rebuilt.
* configure.in: Print message when checking to see if gcj can
handle -fuse-divide-subroutine.
Tom
Index: configure.in
===================================================================
RCS file: /cvs/java/libgcj/libjava/configure.in,v
retrieving revision 1.31
diff -u -r1.31 configure.in
--- configure.in 1999/09/20 20:09:42 1.31
+++ configure.in 1999/09/23 19:34:24
@@ -530,6 +530,7 @@
# 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
@@ -540,6 +541,7 @@
if test "$use_fuse" = no; then
DIVIDESPEC=
fi
+AC_MSG_RESULT($use_fuse)
AC_SUBST(AM_RUNTESTFLAGS)