summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-geosciences/gmt/files/gmt-5.4.4-sighandler.patch')
-rw-r--r--sci-geosciences/gmt/files/gmt-5.4.4-sighandler.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/sci-geosciences/gmt/files/gmt-5.4.4-sighandler.patch b/sci-geosciences/gmt/files/gmt-5.4.4-sighandler.patch
new file mode 100644
index 000000000000..54aecb3c0d55
--- /dev/null
+++ b/sci-geosciences/gmt/files/gmt-5.4.4-sighandler.patch
@@ -0,0 +1,14 @@
+https://bugs.gentoo.org/738224
+Author: hangglider@gmx.de
+--- a/src/common_sighandler.c
++++ b/src/common_sighandler.c
+@@ -187,7 +187,7 @@
+ return;
+ }
+ else {
+- fprintf (stderr, "ERROR: Caught signal number %d (%s) at\n", sig_num, sys_siglist[sig_num]);
++ fprintf (stderr, "ERROR: Caught signal number %d (%s) at\n", sig_num, strsignal(sig_num));
+ backtrace_symbols_fd (array, 2, STDERR_FILENO); /* print function with faulting instruction */
+ size = backtrace (array, 50); /* get void*'s for all entries on the stack */
+ fprintf (stderr, "Stack backtrace:\n");
+