-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
...t/slint/slint-cpp/0001-WIP-v-1-6-0-Use-a-patched-gettext-to-avoid-cross-compiling-g.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,24 @@ | ||
From b32e84040f03b148ef1d6033bbba65b86bec8d6a Mon Sep 17 00:00:00 2001 | ||
From: Simon Hausmann <[email protected]> | ||
Date: Sun, 18 Jun 2023 11:35:07 +0200 | ||
Subject: [PATCH] WIP: Use a patched gettext to avoid cross-compiling gettext | ||
when building with Ycoto | ||
|
||
--- | ||
Cargo.toml | 3 +++ | ||
1 file changed, 3 insertions(+) | ||
|
||
diff --git a/Cargo.toml b/Cargo.toml | ||
index 55dcc5405..9281e2ae4 100644 | ||
--- a/Cargo.toml | ||
+++ b/Cargo.toml | ||
@@ -143,6 +143,9 @@ cfg_aliases = { version = "0.2.0" } | ||
|
||
raw-window-handle-06 = { package = "raw-window-handle", version = "0.6", features = ["alloc"] } | ||
|
||
+[patch.crates-io] | ||
+gettext-sys = { git = "https://github.com/slint-ui/gettext-rs", branch = "simon/fix-linux-detection" } | ||
+ | ||
[profile.release] | ||
lto = true | ||
panic = "abort" |
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,13 @@ | ||
require recipes-slint/slint/slint-cpp-v2.inc | ||
|
||
# Either REMOVE or REPLACE this patch, but never change it, as it's also referenced | ||
# from other releases | ||
SRC_URI += "file://0001-WIP-v-1-6-0-Use-a-patched-gettext-to-avoid-cross-compiling-g.patch" | ||
|
||
LIC_FILES_CHKSUM = "file://LICENSE.md;md5=fce682d891cef27e78643d58a1c80149" | ||
|
||
# v1.6.0 tag | ||
SLINT_REV = "644e15dee19fb1a72975c81e62892b9251a1111a" | ||
|
||
EXTRA_OECMAKE:append = " -DSLINT_FEATURE_GETTEXT=ON" | ||
|