This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: FYI: --disable-java-awt
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Subject: Patch: FYI: --disable-java-awt
- From: Tom Tromey <tromey at redhat dot com>
- Date: 11 Oct 2001 10:05:39 -0600
- Reply-To: tromey at redhat dot com
People have pointed out that configure --disable-java-awt doesn't
work, but instead just prints an error. This patch fixes the problem.
I'm checking this in.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* configure: Rebuilt.
* configure.in: Recognize --disable-java-awt.
Index: configure.in
===================================================================
RCS file: /cvs/gcc/gcc/libjava/configure.in,v
retrieving revision 1.99
diff -u -r1.99 configure.in
--- configure.in 2001/09/29 19:16:26 1.99
+++ configure.in 2001/10/11 15:29:10
@@ -826,6 +826,11 @@
gtk)
# Nothing, yet...
;;
+ no)
+ use_xlib_awt=
+ use_gtk_awt=
+ break
+ ;;
*)
echo "*** unrecognised argument \"${peer}\" for --enable-java-awt" 1>&2
exit 1