mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-22 22:51:32 +08:00
configure: Rebuilt.
* configure: Rebuilt. * configure.in: Fixed test for --disable-java-net. From-SVN: r29931
This commit is contained in:
parent
eafcc3d34a
commit
006d4a9b37
@ -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
433
libjava/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -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 <cni.h>
|
||||
#include <gcj/cni.h>
|
||||
</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 <cni.h>
|
||||
#include <gcj/cni.h>
|
||||
#include <Int.h>
|
||||
Int*
|
||||
mult (Int *p, jint k)
|
||||
|
Loading…
x
Reference in New Issue
Block a user