configure: Rebuilt.

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

From-SVN: r29931
This commit is contained in:
Tom Tromey 1999-10-13 00:00:35 +00:00 committed by Tom Tromey
parent eafcc3d34a
commit 006d4a9b37
4 changed files with 220 additions and 226 deletions

View File

@ -1,3 +1,8 @@
1999-10-12 Tom Tromey <tromey@cygnus.com>
* configure: Rebuilt.
* configure.in: Fixed test for --disable-java-net.
1999-10-06 Tom Tromey <tromey@cygnus.com>
* configure.in (GCJ): Define as "target-gcj", not "target/gcj"

433
libjava/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -59,7 +59,7 @@ dnl Whether java.net is built by default can depend on the target.
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

View File

@ -50,7 +50,7 @@ a Java/CNI-aware C++ compiler, specifically a recent version of G++.)</para>
<para>
You start with:
<programlisting>
#include &lt;cni.h&gt;
#include &lt;gcj/cni.h&gt;
</programlisting></para>
<para>
@ -198,7 +198,7 @@ Java provides 8 <quote>primitives</quote> types:
<literal>long</literal>, <literal>float</literal>, <literal>double</literal>,
<literal>char</literal>, and <literal>boolean</literal>.
These are the same as the following C++ <literal>typedef</literal>s
(which are defined by <literal>cni.h</literal>):
(which are defined by <literal>gcj/cni.h</literal>):
<literal>jbyte</literal>, <literal>jshort</literal>, <literal>jint</literal>,
<literal>jlong</literal>, <literal>jfloat</literal>,
<literal>jdouble</literal>,
@ -350,7 +350,7 @@ public class Int
</programlisting>
you can write:
<programlisting>
#include &lt;cni.h&gt;
#include &lt;gcj/cni.h&gt;
#include &lt;Int.h&gt;
Int*
mult (Int *p, jint k)