From 8ad0bbcc8059f44ce7bfedca9ea6905ddb11bc9c Mon Sep 17 00:00:00 2001 From: asvitkine <> Date: Mon, 13 Apr 2009 23:13:20 +0000 Subject: [PATCH] windows fix try#2 --- BasiliskII/src/Unix/sigsegv.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BasiliskII/src/Unix/sigsegv.cpp b/BasiliskII/src/Unix/sigsegv.cpp index 5a3d6ac4..53d511c0 100644 --- a/BasiliskII/src/Unix/sigsegv.cpp +++ b/BasiliskII/src/Unix/sigsegv.cpp @@ -52,8 +52,9 @@ using std::list; // Size of an unsigned integer large enough to hold all bits of a pointer // NOTE: this can be different than SIGSEGV_REGISTER_TYPE. In // particular, on ILP32 systems with a 64-bit kernel (HP-UX/ia64?) -#if defined(HAVE_WIN32_VM) && !defined(__CYGWIN__) +#if defined(HAVE_WIN32_VM) // Windows is either ILP32 or LLP64 +#include typedef UINT_PTR sigsegv_uintptr_t; #else // Other systems are sane enough to follow ILP32 or LP64 models