diff --git a/include/SDL_assert.h b/include/SDL_assert.h index 3817fcfb4..d9fd95af9 100644 --- a/include/SDL_assert.h +++ b/include/SDL_assert.h @@ -58,7 +58,7 @@ macro can have unique static variables associated with it. #define SDL_TriggerBreakpoint() __asm { int 3 } #elif (defined(__GNUC__) && ((__i386__) || (__x86_64__))) #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "int $3\n\t" ) -#elif defined(unix) +#elif defined(HAVE_SIGNAL_H) #include #define SDL_TriggerBreakpoint() raise(SIGTRAP) #else