diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2004-01-02 22:58:53 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2004-01-02 22:58:53 +0000 |
commit | 70af86bdd57a0fe377e27d33174f0a4417ef0a95 (patch) | |
tree | 7286886e6d63ce9ba0e8b070d0f612ca3ddafb65 /java/kaffe-devel/files | |
parent | - Install missing config files: unicode.map and threshold.conf (diff) |
[maintainer update] java/kaffe-devel update to 1.1.3
Upgrade to 1.1.3
PR: ports/60762
Submitted by: Mark Huizer <xaa+ports@timewasters.nl>
Notes
Notes:
svn path=/head/; revision=97133
Diffstat (limited to 'java/kaffe-devel/files')
-rw-r--r-- | java/kaffe-devel/files/patch-config::i386::freebsd2::md.h | 12 | ||||
-rw-r--r-- | java/kaffe-devel/files/patch-inetaddressimpl | 12 |
2 files changed, 12 insertions, 12 deletions
diff --git a/java/kaffe-devel/files/patch-config::i386::freebsd2::md.h b/java/kaffe-devel/files/patch-config::i386::freebsd2::md.h deleted file mode 100644 index 6cff34cc34ba..000000000000 --- a/java/kaffe-devel/files/patch-config::i386::freebsd2::md.h +++ /dev/null @@ -1,12 +0,0 @@ - --- config/i386/freebsd2/md.h.orig Sat Sep 6 01:38:48 2003 - +++ config/i386/freebsd2/md.h Sat Sep 6 01:38:52 2003 - @@ -39,8 +39,8 @@ - asm("frstor %0": :"m"(*fdata)) - - /* Define signal context macros for xprofiling */ - -#define SIGNAL_ARGS(sig, sc) int sig, int __code, struct sigcontext *##sc - -#define SIGNAL_CONTEXT_POINTER(scp) struct sigcontext *##scp - +#define SIGNAL_ARGS(sig, sc) int sig, int __code, struct sigcontext *sc - +#define SIGNAL_CONTEXT_POINTER(scp) struct sigcontext *scp - #define GET_SIGNAL_CONTEXT_POINTER(sc) (sc) - #define SIGNAL_PC(scp) (scp)->sc_pc diff --git a/java/kaffe-devel/files/patch-inetaddressimpl b/java/kaffe-devel/files/patch-inetaddressimpl new file mode 100644 index 000000000000..7a4017a9f808 --- /dev/null +++ b/java/kaffe-devel/files/patch-inetaddressimpl @@ -0,0 +1,12 @@ +--- libraries/clib/net/InetAddressImpl.c.orig Wed Dec 31 13:43:03 2003 ++++ libraries/clib/net/InetAddressImpl.c Wed Dec 31 13:43:09 2003 +@@ -241,7 +241,9 @@ + "Unable to contact name server"); + break; + case EAI_NONAME: ++#if defined(EAI_NODATA) && EAI_NODATA != EAI_NONAME + case EAI_NODATA: ++#endif + postExceptionMessage(&einfo, + JAVA_NET(UnknownHostException), + "Unknown host: %s", |