Skip to content

Commit

Permalink
gnome-console: Fix build with musl
Browse files Browse the repository at this point in the history
Signed-off-by: Khem Raj <[email protected]>
Cc: Markus Volk <[email protected]>
  • Loading branch information
kraj committed Sep 25, 2024
1 parent bdf889b commit 5550273
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
From e72f6da3d509561b75e223667a0380772e7bd48a Mon Sep 17 00:00:00 2001
From: Khem Raj <[email protected]>
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 <[email protected]>
---
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
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ DEPENDS = " \
pcre2 \
vte \
"

SRC_URI += "file://0001-include-locale.h-for-setlocale.patch"
SRC_URI[archive.sha256sum] = "487ec0de0a24f12ef6f778e4aee98d744a9dcc921c9e7df98b2d9f410b00ef52"

PACKAGECONFIG ?= ""
Expand Down

0 comments on commit 5550273

Please sign in to comment.