gnome-console: Fix build with musl

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Markus Volk <f_l_k@t-online.de>
This commit is contained in:
Khem Raj 2024-09-23 20:42:39 -07:00
parent ed4d00ed1e
commit 1a30244e30
No known key found for this signature in database
GPG Key ID: BB053355919D3314
2 changed files with 35 additions and 1 deletions

View File

@ -0,0 +1,34 @@
From e72f6da3d509561b75e223667a0380772e7bd48a Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Mon, 23 Sep 2024 20:38:09 -0700
Subject: [PATCH] include locale.h for setlocale()
This issue is surfaced on systems+clang
Fixes
../gnome-console-47.0/src/main.c:29:3: error: call to undeclared function 'setlocale'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
29 | setlocale (LC_ALL, "");
| ^
../gnome-console-47.0/src/main.c:29:14: error: use of undeclared identifier 'LC_ALL'
29 | setlocale (LC_ALL, "");
| ^
Upstream-Status: Submitted [https://gitlab.gnome.org/GNOME/console/-/merge_requests/171]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
src/main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main.c b/src/main.c
index af9c5a5..5d16160 100644
--- a/src/main.c
+++ b/src/main.c
@@ -17,7 +17,7 @@
*/
#include <glib/gi18n.h>
-
+#include <locale.h>
#include <kgx.h>
int

View File

@ -17,7 +17,7 @@ DEPENDS = " \
pcre2 \
vte \
"
SRC_URI += "file://0001-include-locale.h-for-setlocale.patch"
SRC_URI[archive.sha256sum] = "487ec0de0a24f12ef6f778e4aee98d744a9dcc921c9e7df98b2d9f410b00ef52"
PACKAGECONFIG ?= ""