This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: Disable xlib peers by default, add --enable-java-awt configure option
- To: Bryce McKinlay <bryce at albatross dot co dot nz>
- Subject: Re: Disable xlib peers by default, add --enable-java-awt configure option
- From: Tom Tromey <tromey at redhat dot com>
- Date: 21 Feb 2001 09:33:56 -0700
- Cc: Jeff Sturm <jsturm at one-point dot com>, java-patches at gcc dot gnu dot org
- References: <Pine.LNX.4.10.10102210431060.5107-100000@cc42593-a> <3A93A700.FBFE5176@albatross.co.nz>
- Reply-To: tromey at redhat dot com
Bryce> Heres a patch to do that. The idea is that you can specify a
Bryce> comma separated list of peers to build in the --enable-java-awt
Bryce> argument
Cool.
Bryce> It works nicely but I'd also like to have it complain
Bryce> appropriatly if someone specifies "--enable-java-awt=xlib" but
Bryce> doesn't have X headers installed or whatever. It seems that the
Bryce> test for "if [test "$no_x" = yes]" doesn't actually work, even
Bryce> though it definatly did seem work inside an AM_CONDITIONAL
Bryce> previously ("--without-x" stopped libgcjx being build).
Bryce> Any ideas on that one Tom?
The code in question needs to come after AC_PATH_XTRA.
Tom