c480039af9
- sdl-config no longer provides -I${LOCALBASE}/include. - add an `aa' flavor (ASCII art display). - GNU make is not needed. - don't use nasm with gcc 3. - don't install a SEGV handler. - prevent the joystick driver from picking up usb keyboards. ok pvalchev@
22 lines
549 B
Plaintext
22 lines
549 B
Plaintext
$OpenBSD: patch-src_SDL_fatal_c,v 1.1 2002/11/30 11:17:26 wcobb Exp $
|
|
--- src/SDL_fatal.c.orig Tue Nov 12 23:20:24 2002
|
|
+++ src/SDL_fatal.c Tue Nov 12 23:22:35 2002
|
|
@@ -72,9 +72,6 @@ static void SDL_Parachute(int sig)
|
|
signal(sig, SIG_DFL);
|
|
print_msg("Fatal signal: ");
|
|
switch (sig) {
|
|
- case SIGSEGV:
|
|
- print_msg("Segmentation Fault");
|
|
- break;
|
|
#ifdef SIGBUS
|
|
#if SIGBUS != SIGSEGV
|
|
case SIGBUS:
|
|
@@ -109,7 +106,6 @@ static void SDL_Parachute(int sig)
|
|
}
|
|
|
|
static int SDL_fatal_signals[] = {
|
|
- SIGSEGV,
|
|
#ifdef SIGBUS
|
|
SIGBUS,
|
|
#endif
|