summaryrefslogtreecommitdiff
path: root/emulators/wine/patches/patch-ag
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2006-10-21 08:22:54 +0000
committerwiz <wiz@pkgsrc.org>2006-10-21 08:22:54 +0000
commitfb9b3a97e3ade99d40d7ae38b2ce66b5bbdb3b0f (patch)
treea56a2c4e535cfe22a6b4dbe007c5acd1650edebd /emulators/wine/patches/patch-ag
parenta5a333406bd64e5a46ac7b42d30af5f71f70dcac (diff)
downloadpkgsrc-fb9b3a97e3ade99d40d7ae38b2ce66b5bbdb3b0f.tar.gz
Add patch to make this compile a bit further on amd64. It now fails in
oaidl_p.c:11403:2: error: #error Invalid build platform for this stub.
Diffstat (limited to 'emulators/wine/patches/patch-ag')
-rw-r--r--emulators/wine/patches/patch-ag58
1 files changed, 58 insertions, 0 deletions
diff --git a/emulators/wine/patches/patch-ag b/emulators/wine/patches/patch-ag
new file mode 100644
index 00000000000..1728516714a
--- /dev/null
+++ b/emulators/wine/patches/patch-ag
@@ -0,0 +1,58 @@
+$NetBSD: patch-ag,v 1.7 2006/10/21 08:22:54 wiz Exp $
+
+--- dlls/ntdll/signal_x86_64.c.orig 2006-10-13 14:43:39.000000000 +0000
++++ dlls/ntdll/signal_x86_64.c
+@@ -93,6 +93,53 @@ typedef struct ucontext SIGCONTEXT;
+
+ #endif /* linux */
+
++#if defined(__NetBSD__) && (__NetBSD_Version__ >= 200000000)
++# include <sys/ucontext.h>
++# include <sys/types.h>
++# include <signal.h>
++
++typedef ucontext_t SIGCONTEXT;
++
++#define RAX_sig(context) ((context)->uc_mcontext.__gregs[_REG_RAX])
++#define RBX_sig(context) ((context)->uc_mcontext.__gregs[_REG_RBX])
++#define RCX_sig(context) ((context)->uc_mcontext.__gregs[_REG_RCX])
++#define RDX_sig(context) ((context)->uc_mcontext.__gregs[_REG_RDX])
++#define RSI_sig(context) ((context)->uc_mcontext.__gregs[_REG_RSI])
++#define RDI_sig(context) ((context)->uc_mcontext.__gregs[_REG_RDI])
++#define RBP_sig(context) ((context)->uc_mcontext.__gregs[_REG_RBP])
++#define R8_sig(context) ((context)->uc_mcontext.__gregs[_REG_R8])
++#define R9_sig(context) ((context)->uc_mcontext.__gregs[_REG_R9])
++#define R10_sig(context) ((context)->uc_mcontext.__gregs[_REG_R10])
++#define R11_sig(context) ((context)->uc_mcontext.__gregs[_REG_R11])
++#define R12_sig(context) ((context)->uc_mcontext.__gregs[_REG_R12])
++#define R13_sig(context) ((context)->uc_mcontext.__gregs[_REG_R13])
++#define R14_sig(context) ((context)->uc_mcontext.__gregs[_REG_R14])
++#define R15_sig(context) ((context)->uc_mcontext.__gregs[_REG_R15])
++
++#define CS_sig(context) ((context)->uc_mcontext.__gregs[_REG_CS])
++#define DS_sig(context) ((context)->uc_mcontext.__gregs[_REG_DS])
++#define ES_sig(context) ((context)->uc_mcontext.__gregs[_REG_ES])
++#define FS_sig(context) ((context)->uc_mcontext.__gregs[_REG_FS])
++#define GS_sig(context) ((context)->uc_mcontext.__gregs[_REG_GS])
++#define SS_sig(context) ((context)->uc_mcontext.__gregs[_REG_SS])
++
++#define EFL_sig(context) ((context)->uc_mcontext.__gregs[_REG_RFL])
++
++#define RIP_sig(context) (*((unsigned long*)&(context)->uc_mcontext.__gregs[_REG_RIP]))
++#define RSP_sig(context) (*((unsigned long*)&(context)->uc_mcontext.__gregs[_REG_URSP]))
++
++#define TRAP_sig(context) ((context)->uc_mcontext.__gregs[_REG_TRAPNO])
++#define ERROR_sig(context) ((context)->uc_mcontext.__gregs[_REG_ERR])
++
++#define FAULT_CODE (__siginfo->si_code)
++#define FAULT_ADDRESS (__siginfo->si_addr)
++
++#define HANDLER_DEF(name) void name( int __signal, siginfo_t *__siginfo, SIGCONTEXT *__context )
++#define HANDLER_CONTEXT (__context)
++
++#define FPU_sig(context) ((XMM_SAVE_AREA32 *)((context)->uc_mcontext.__fpregs))
++#endif /* __NetBSD__ */
++
+ enum i386_trap_code
+ {
+ TRAP_x86_UNKNOWN = -1, /* Unknown fault (TRAP_sig not defined) */