Attempt to fix compilation on BSD

This commit is contained in:
o9000 2016-01-03 02:38:04 +01:00
parent 9d407eebf0
commit 0992662396
2 changed files with 3 additions and 2 deletions

View file

@ -34,6 +34,7 @@ else()
find_library(EXECINFO_LIBRARIES NAMES execinfo)
if(EXECINFO_LIBRARIES)
set(EXECINFO_FOUND TRUE)
set(EXECINFO_LIBRARIES "-lexecinfo")
set(BACKTRACE_L_FLAGS "-rdynamic")
endif()
endif()

View file

@ -146,7 +146,7 @@ const char *signal_name(int sig)
case SIGPIPE: return "SIGPIPE: Broken pipe (POSIX).";
case SIGALRM: return "SIGALRM: Alarm clock (POSIX).";
case SIGTERM: return "SIGTERM: Termination (ANSI).";
case SIGSTKFLT: return "SIGSTKFLT: Stack fault.";
//case SIGSTKFLT: return "SIGSTKFLT: Stack fault.";
case SIGCHLD: return "SIGCHLD: Child status has changed (POSIX).";
case SIGCONT: return "SIGCONT: Continue (POSIX).";
case SIGSTOP: return "SIGSTOP: Stop, unblockable (POSIX).";
@ -160,7 +160,7 @@ const char *signal_name(int sig)
case SIGPROF: return "SIGPROF: Profiling alarm clock (4.2 BSD).";
case SIGWINCH: return "SIGWINCH: Window size change (4.3 BSD, Sun).";
case SIGIO: return "SIGIO: Pollable event occurred (System V) / I/O now possible (4.2 BSD).";
case SIGPWR: return "SIGPWR: Power failure restart (System V).";
//case SIGPWR: return "SIGPWR: Power failure restart (System V).";
case SIGSYS: return "SIGSYS: Bad system call.";
}
static char s[64];