This is the mail archive of the
java-patches@sourceware.cygnus.com
mailing list for the Java project.
Re: patch: --disable-interpreter
- To: Bryce McKinlay <bryce at albatross dot co dot nz>
- Subject: Re: patch: --disable-interpreter
- From: Tom Tromey <tromey at cygnus dot com>
- Date: Tue, 18 Jan 2000 20:11:32 -0800 (PST)
- Cc: java-patches at sourceware dot cygnus dot com
- References: <38851F9D.D6B238B6@albatross.co.nz>
>>>>> "Bryce" == Bryce McKinlay <bryce@albatross.co.nz> writes:
Bryce> It seems natural to me to provide a "--disable-interpreter"
Bryce> configure option now that the interpreter is enabled by default
Bryce> on some platforms. Is this patch ok?
configure will automatically recognize --disable-interpreter since we
already have an AC_ARG_ENABLE for it. We just have to convince it to
do the right thing.
So this patch isn't the one.
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
Tom