Commit 423ceead by Andreas Tobler Committed by Andreas Tobler

jawt.c: Remove malloc.h, covered by stdlib.h.

2005-06-03  Andreas Tobler  <a.tobler@schweiz.ch>

	* jawt.c: Remove malloc.h, covered by stdlib.h.

	* testsuite/libjava.jni/jni.exp
	(gcj_jni_invocation_compile_c_to_binary): Add -bind_at_load to silence
	the build process.

From-SVN: r100504
parent c1bd2d66
2005-06-03 Andreas Tobler <a.tobler@schweiz.ch>
* jawt.c: Remove malloc.h, covered by stdlib.h.
* testsuite/libjava.jni/jni.exp
(gcj_jni_invocation_compile_c_to_binary): Add -bind_at_load to silence
the build process.
2005-06-02 Keith Seitz <keiths@redhat.com> 2005-06-02 Keith Seitz <keiths@redhat.com>
* gnu/classpath/jdwp/transport/TransportException.java: New file. * gnu/classpath/jdwp/transport/TransportException.java: New file.
......
...@@ -40,7 +40,6 @@ ...@@ -40,7 +40,6 @@
#include <jawt.h> #include <jawt.h>
#include <jawt_md.h> #include <jawt_md.h>
#include "classpath_jawt.h" #include "classpath_jawt.h"
#include <malloc.h>
static jint (JNICALL _Jv_Lock) (JAWT_DrawingSurface* surface); static jint (JNICALL _Jv_Lock) (JAWT_DrawingSurface* surface);
static void (JNICALL _Jv_Unlock) (JAWT_DrawingSurface* surface); static void (JNICALL _Jv_Unlock) (JAWT_DrawingSurface* surface);
......
...@@ -196,7 +196,7 @@ proc gcj_jni_invocation_compile_c_to_binary {file {options {}}} { ...@@ -196,7 +196,7 @@ proc gcj_jni_invocation_compile_c_to_binary {file {options {}}} {
# Set some darwin specific options # Set some darwin specific options
if { [istarget "*-*-darwin*"] } { if { [istarget "*-*-darwin*"] } {
lappend options "additional_flags=-multiply_defined suppress" lappend options "additional_flags= -bind_at_load -multiply_defined suppress"
} }
# Find the generated header. # Find the generated header.
lappend options "additional_flags=-I. -I.." lappend options "additional_flags=-I. -I.."
......
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