diff options
author | archie <archie@FreeBSD.org> | 2005-04-01 23:20:45 +0800 |
---|---|---|
committer | archie <archie@FreeBSD.org> | 2005-04-01 23:20:45 +0800 |
commit | 712f2a1d9e2f88acc78d5fa25acec68ab6ca61cb (patch) | |
tree | 4be1ec8c6b79eed81dd60f123974c2bd48111be1 /java | |
parent | d5230040800d9719882e16e26a6c87ee86332e1a (diff) | |
download | freebsd-ports-gnome-712f2a1d9e2f88acc78d5fa25acec68ab6ca61cb.tar.gz freebsd-ports-gnome-712f2a1d9e2f88acc78d5fa25acec68ab6ca61cb.tar.zst freebsd-ports-gnome-712f2a1d9e2f88acc78d5fa25acec68ab6ca61cb.zip |
Add patch to fix a bug.
Approved by: portmgr
Diffstat (limited to 'java')
-rw-r--r-- | java/jc/files/patch-aa | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/java/jc/files/patch-aa b/java/jc/files/patch-aa new file mode 100644 index 000000000000..09d31212057a --- /dev/null +++ b/java/jc/files/patch-aa @@ -0,0 +1,11 @@ +--- libjc/arch/i386/i386_libjc.h ++++ libjc/arch/i386/i386_libjc.h +@@ -97,7 +97,7 @@ + static inline const void * + _jc_mcontext_sp(const mcontext_t *mctx) + { +- return (const void *)mctx->mc_isp; ++ return (const void *)mctx->mc_esp; + } + + static inline const void * |