forked from openembedded/meta-openembedded
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Khem Raj <[email protected]> Cc: Markus Volk <[email protected]>
- Loading branch information
Showing
2 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
...gnome/recipes-gnome/gnome-console/gnome-console/0001-include-locale.h-for-setlocale.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters