Patch: fix for --disable-java-net

Tom Tromey tromey@cygnus.com
Tue Oct 12 16:58:00 GMT 1999


This fixes the problem that Bryce just reported.  I'm checking it in.

1999-10-12  Tom Tromey  <tromey@cygnus.com>

	* configure: Rebuilt.
	* configure.in: Fixed test for --disable-java-net.

Tom

Index: configure.in
===================================================================
RCS file: /cvs/java/libgcj/libjava/configure.in,v
retrieving revision 1.37
diff -u -r1.37 configure.in
--- configure.in	1999/10/06 23:13:37	1.37
+++ configure.in	1999/10/12 23:57:37
@@ -59,7 +59,7 @@
 if test -n "$enable_java_net"; then
    enable_java_net=${enable_java_net_default-yes}
 fi
-if test "$enable_java_net" != yes; then
+if test "$enable_java_net" = no; then
    AC_DEFINE(DISABLE_JAVA_NET)
 fi
 


More information about the Java-patches mailing list