sci-astronomy/siril: Fix building on musl, missing execinfo.h

Closes: https://bugs.gentoo.org/873016
Signed-off-by: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de>
Closes: https://github.com/gentoo/gentoo/pull/27483
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Mario Haustein 2022-09-26 23:41:06 +02:00 committed by Sam James
parent 57caf57304
commit ddb3e71ded
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,22 @@
commit c009c4c1800086e7f4c4e80939e9ddc8964c8e12
Author: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de>
Date: Thu Aug 4 00:27:08 2022 +0200
Include execinfo.h only if available
Bug: https://bugs.gentoo.org/873016
Upstream: https://gitlab.com/free-astro/siril/-/merge_requests/284
diff --git a/src/core/signals.c b/src/core/signals.c
index 74100b3a..0eefd460 100644
--- a/src/core/signals.c
+++ b/src/core/signals.c
@@ -25,7 +25,7 @@
#ifdef _WIN32
#include <windows.h>
#include <dbghelp.h>
-#else
+#elif HAVE_EXECINFO_H
#include <execinfo.h>
#endif

View File

@ -49,6 +49,7 @@ RDEPEND="
PATCHES=(
"${FILESDIR}/${PN}-docfiles.patch"
"${FILESDIR}/${PN}-$(ver_cut 1-2)-dependencies.patch"
"${FILESDIR}/${PN}-$(ver_cut 1-2)-execinfo.patch"
)
DOCS=( README.md NEWS ChangeLog AUTHORS )