diff options
Diffstat (limited to 'community/openvas-scanner/execinfo-musl-fix.patch')
-rw-r--r-- | community/openvas-scanner/execinfo-musl-fix.patch | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/community/openvas-scanner/execinfo-musl-fix.patch b/community/openvas-scanner/execinfo-musl-fix.patch deleted file mode 100644 index a992f60a16..0000000000 --- a/community/openvas-scanner/execinfo-musl-fix.patch +++ /dev/null @@ -1,40 +0,0 @@ -diff --git a/src/sighand.c b/src/sighand.c -index c82e7e3..4d7001e 100644 ---- a/src/sighand.c -+++ b/src/sighand.c -@@ -22,8 +22,9 @@ - * @file sighand.c - * @brief Provides signal handling functions. - */ -- -+#ifdef HAVE_EXECINFO_H - #include <execinfo.h> /* for backtrace() */ -+#endif - #include <glib.h> /* for G_LOG_DOMAIN, for g_critical() */ - #include <signal.h> /* for kill() */ - #include <sys/wait.h> /* for waitpid() */ -@@ -106,7 +107,7 @@ sighand_chld (pid_t pid) - - waitpid (pid, &status, WNOHANG); - } -- -+#ifdef HAVE_EXECINFO_H - static void - print_trace () - { -@@ -125,12 +126,15 @@ print_trace () - - g_free (strings); - } -+#endif - - void - sighand_segv (int given_signal) - { - signal (SIGSEGV, _exit); -+#ifdef HAVE_EXECINFO_H - print_trace (); -+#endif - make_em_die (SIGTERM); - /* Raise signal again, to exit with the correct return value, - * and to enable core dumping. */ |