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> 1999-10-06 Tom Tromey <tromey@cygnus.com>
* configure.in (GCJ): Define as "target-gcj", not "target/gcj" * 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. ...@@ -59,7 +59,7 @@ dnl Whether java.net is built by default can depend on the target.
if test -n "$enable_java_net"; then if test -n "$enable_java_net"; then
enable_java_net=${enable_java_net_default-yes} enable_java_net=${enable_java_net_default-yes}
fi fi
if test "$enable_java_net" != yes; then if test "$enable_java_net" = no; then
AC_DEFINE(DISABLE_JAVA_NET) AC_DEFINE(DISABLE_JAVA_NET)
fi fi
......
...@@ -50,7 +50,7 @@ a Java/CNI-aware C++ compiler, specifically a recent version of G++.)</para> ...@@ -50,7 +50,7 @@ a Java/CNI-aware C++ compiler, specifically a recent version of G++.)</para>
<para> <para>
You start with: You start with:
<programlisting> <programlisting>
#include &lt;cni.h&gt; #include &lt;gcj/cni.h&gt;
</programlisting></para> </programlisting></para>
<para> <para>
...@@ -198,7 +198,7 @@ Java provides 8 <quote>primitives</quote> types: ...@@ -198,7 +198,7 @@ Java provides 8 <quote>primitives</quote> types:
<literal>long</literal>, <literal>float</literal>, <literal>double</literal>, <literal>long</literal>, <literal>float</literal>, <literal>double</literal>,
<literal>char</literal>, and <literal>boolean</literal>. <literal>char</literal>, and <literal>boolean</literal>.
These are the same as the following C++ <literal>typedef</literal>s 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>jbyte</literal>, <literal>jshort</literal>, <literal>jint</literal>,
<literal>jlong</literal>, <literal>jfloat</literal>, <literal>jlong</literal>, <literal>jfloat</literal>,
<literal>jdouble</literal>, <literal>jdouble</literal>,
...@@ -350,7 +350,7 @@ public class Int ...@@ -350,7 +350,7 @@ public class Int
</programlisting> </programlisting>
you can write: you can write:
<programlisting> <programlisting>
#include &lt;cni.h&gt; #include &lt;gcj/cni.h&gt;
#include &lt;Int.h&gt; #include &lt;Int.h&gt;
Int* Int*
mult (Int *p, jint k) 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