aboutsummaryrefslogtreecommitdiff
path: root/gcc/java
diff options
context:
space:
mode:
authorDavid S. Miller <davem@pierdol.cobaltmicro.com>1998-09-13 20:37:17 +0000
committerDavid S. Miller <davem@gcc.gnu.org>1998-09-13 13:37:17 -0700
commitd7496fbb76547bc451511ffac9fd2a7e195630cb (patch)
tree8d6c9b6a80080305995e50a629f6e7e1fcf8264d /gcc/java
parent007e8d2a7821a3a8facedb851012555516d7f9b2 (diff)
downloadgcc-d7496fbb76547bc451511ffac9fd2a7e195630cb.zip
gcc-d7496fbb76547bc451511ffac9fd2a7e195630cb.tar.gz
gcc-d7496fbb76547bc451511ffac9fd2a7e195630cb.tar.bz2
We now fully bootstrap on solaris-2.7 sparcv9.
toplevel: * config.sub: Recognize sparcv9 just like sparc64. gcc/ChangeLog: * configure.in: in sparc9-sol2 config, use 'if test' not brackets. * configure: Rebuilt. * config/sparc/sol2-sld-64.h (SPARC_DEFAULT_CMODEL): Change to CM_MEDANY. (CPP_CPU_SPEC): Do not define _LP64, header files do this. (CPP_CPU_DEFAULT_SPEC): Likewise. * config/sparc/sol2.h (INIT_SUBTARGET_OPTABS): Get the names right for arch64 libfuncs. gcc/java/ChangeLog: * jcf-io.c: Include string.h. libchill/ChangeLog: * configure.in: Use 'if test' not brackets. * configure: Rebuilt. From-SVN: r22404
Diffstat (limited to 'gcc/java')
-rw-r--r--gcc/java/ChangeLog4
-rw-r--r--gcc/java/jcf-io.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog
index 7f74d05..79e38c7 100644
--- a/gcc/java/ChangeLog
+++ b/gcc/java/ChangeLog
@@ -1,3 +1,7 @@
+1998-09-13 David S. Miller <davem@pierdol.cobaltmicro.com>
+
+ * jcf-io.c: Include string.h.
+
Thu Sep 10 10:33:31 1998 Jeffrey A Law (law@cygnus.com)
* Make-lang.in (GCJ): Define before using.
diff --git a/gcc/java/jcf-io.c b/gcc/java/jcf-io.c
index e805d08..145b12d 100644
--- a/gcc/java/jcf-io.c
+++ b/gcc/java/jcf-io.c
@@ -29,6 +29,7 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */
#include "jcf.h"
#ifdef __STDC__
#include <stdlib.h>
+#include <string.h>
#endif
#include <sys/types.h>
#include <sys/stat.h>