From c89cb740f8f146f72749345fad9c325456447418 Mon Sep 17 00:00:00 2001 From: Alfred Wingate Date: Wed, 29 Jan 2025 10:06:22 +0200 Subject: [PATCH] stacktrace: Add missing locale.h The missing header is only obvious on musl and on glibc when you don't have optimizations enabled. Normally the header would transitively come from config.h -> ./lib/eu-config.h -> glibc libintl.h. with __OPTIMIZE__. https://sourceware.org/git/?p=glibc.git;a=blob;f=intl/libintl.h;hb=HEAD#l103 Signed-off-by: Alfred Wingate --- src/stacktrace.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stacktrace.c b/src/stacktrace.c index b912ca5d..d8699ce5 100644 --- a/src/stacktrace.c +++ b/src/stacktrace.c @@ -77,6 +77,7 @@ #include #include #include +#include #include -- 2.47.2