This is the mail archive of the
java-patches@sourceware.cygnus.com
mailing list for the Java project.
Re: patch: --disable-interpreter
Tom Tromey wrote:
> The right thing to do is to add a case to the "if" inside the existing
> AC_ARG_ENABLE. Something like:
>
> elif test "$enable_interpreter" = no; then
> libgcj_interpreter=no
> fi
Okay, that seems to work. Can somebody else check this in? I'm not sure if my
autoconf is 100% up to date.
===================================================================
RCS file: /cvs/java/libgcj/libjava/configure.in,v
retrieving revision 1.49
diff -u -r1.49 configure.in
--- configure.in 2000/01/18 14:41:08 1.49
+++ configure.in 2000/01/19 04:52:45
@@ -76,6 +76,8 @@
if test "$enable_interpreter" = yes; then
# This can also be set in configure.host.
libgcj_interpreter=yes
+ elif test "$enable_interpreter" = no; then
+ libgcj_interpreter=no
fi)
if test "$libgcj_interpreter" = yes; then