This is the mail archive of the java-patches@sourceware.cygnus.com mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch: message in configure.in


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)
 

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]