Commit 006d4a9b by Tom Tromey Committed by Tom Tromey

configure: Rebuilt.

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

From-SVN: r29931
parent eafcc3d3
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"
......
......@@ -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
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment