[kaffe] CVS kaffe (alex): add DROPS/L4 as OS for fastjar configure
Kaffe CVS
cvs-commits at kaffe.org
Sat Mar 25 10:14:42 PST 2006
PatchSet 7173
Date: 2006/03/25 18:05:09
Author: alex
Branch: HEAD
Tag: (none)
Log:
add DROPS/L4 as OS for fastjar configure
fix build when dietlibc is used - rearrange two includes
Members:
ChangeLog:1.4691->1.4692
developers/autogen.sh:1.66->1.67
developers/config4.patch:INITIAL->1.1
libraries/clib/native/java_lang_VMProcess.c:1.3->1.4
Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.4691 kaffe/ChangeLog:1.4692
--- kaffe/ChangeLog:1.4691 Sat Mar 25 15:00:21 2006
+++ kaffe/ChangeLog Sat Mar 25 18:05:09 2006
@@ -1,4 +1,14 @@
2006-03-25 Alexander Boettcher <alex at kaffe.org>
+
+ * developers/config4.patch:
+ patch config.sub of fastjar (add drops as os for configure)
+ * developers/autogen.sh:
+ add config4.patch file
+ * libraries/clib/native/java_lang_VMProcess.c:
+ rearrange signal.h and sys/wait.h - fix build when dietlibc
+ is used, hopefully other libc don't stumble (glibc work)
+
+2006-03-25 Alexander Boettcher <alex at kaffe.org>
DROPS/L4 specific shared library wrapper is obsolete.
Instead usage of new ldso package of DROPS, which is now
Index: kaffe/developers/autogen.sh
diff -u kaffe/developers/autogen.sh:1.66 kaffe/developers/autogen.sh:1.67
--- kaffe/developers/autogen.sh:1.66 Tue Jan 10 21:16:15 2006
+++ kaffe/developers/autogen.sh Sat Mar 25 18:05:12 2006
@@ -168,3 +168,8 @@
cd libraries/javalib/external/classpath
patch -p0 <../../../../developers/config3.patch
)
+
+(
+ cd external/gcc/fastjar/scripts
+ patch -p0 <../../../../developers/config4.patch
+)
===================================================================
Checking out kaffe/developers/config4.patch
RCS: /home/cvs/kaffe/kaffe/developers/config4.patch,v
VERS: 1.1
***************
--- /dev/null Sun Aug 4 19:57:58 2002
+++ kaffe/developers/config4.patch Sat Mar 25 18:14:42 2006
@@ -0,0 +1,17 @@
+Index: config.sub
+===================================================================
+RCS file: /cvs/kaffe/kaffe/external/gcc/fastjar/scripts/config.sub,v
+retrieving revision 1.1
+diff -u -r1.1 config.sub
+--- config.sub 9 Jan 2006 03:19:30 -0000 1.1
++++ config.sub 25 Mar 2006 17:13:51 -0000
+@@ -1315,6 +1315,9 @@
+ -kaos*)
+ os=-kaos
+ ;;
++ -*drops)
++ os=-drops
++ ;;
+ -zvmoe)
+ os=-zvmoe
+ ;;
Index: kaffe/libraries/clib/native/java_lang_VMProcess.c
diff -u kaffe/libraries/clib/native/java_lang_VMProcess.c:1.3 kaffe/libraries/clib/native/java_lang_VMProcess.c:1.4
--- kaffe/libraries/clib/native/java_lang_VMProcess.c:1.3 Sat Dec 10 19:55:35 2005
+++ kaffe/libraries/clib/native/java_lang_VMProcess.c Sat Mar 25 18:05:18 2006
@@ -39,8 +39,8 @@
#include "java_lang_VMProcess.h"
#include <sys/types.h>
-#include <sys/wait.h>
#include <signal.h>
+#include <sys/wait.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
More information about the kaffe
mailing list