From abb9d2eb24d86647f1ba7cfa712414d92230bddc Mon Sep 17 00:00:00 2001 From: asvitkine <> Date: Mon, 13 Apr 2009 19:57:08 +0000 Subject: [PATCH] make sigsegv work better with cygwin --- BasiliskII/src/Unix/sigsegv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BasiliskII/src/Unix/sigsegv.cpp b/BasiliskII/src/Unix/sigsegv.cpp index bc2c07ed..5a3d6ac4 100644 --- a/BasiliskII/src/Unix/sigsegv.cpp +++ b/BasiliskII/src/Unix/sigsegv.cpp @@ -52,7 +52,7 @@ 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?) -#ifdef HAVE_WIN32_VM +#if defined(HAVE_WIN32_VM) && !defined(__CYGWIN__) // Windows is either ILP32 or LLP64 typedef UINT_PTR sigsegv_uintptr_t; #else