diff options
author | Jason Schonberg <schonm@gmail.com> | 2025-05-11 01:06:49 -0400 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-05-10 23:31:41 -0700 |
commit | 2045e713186b0a636f4659eb9d2a1eefc110bf0e (patch) | |
tree | 142d38612e3f9df6d7e4bfd8e547f3b1afb1ffee | |
parent | a0421a34268ad1c5086921c3cab1af13a636e6f3 (diff) | |
download | meta-openembedded-2045e713186b0a636f4659eb9d2a1eefc110bf0e.tar.gz |
xfce4-settings: upgrade 4.20.0 -> 4.20.1
Drop unnecessary CFLAGS. They were introduced with xfce4-settings version
4.18.3 to address two errors seen at the time - deprecated declarations and
implicit declarations. The error was documented here :
https://patchwork.yoctoproject.org/project/oe/patch/20241127005545.86128-1-schonm@gmail.com/
Both of these errors have been addressed.
This change to the code base fixed the deprecated declarations:
https://gitlab.xfce.org/xfce/xfce4-settings/-/commit/def01fc82caac1cb41d3b7c242efa7f98d48e9a6
This change to the code base fixed the implicit declaration :
https://gitlab.xfce.org/xfce/xfce4-settings/-/commit/10e40cdf13f1440d207a50a3f19fc4903da0d80a
Changelog: https://gitlab.xfce.org/xfce/xfce4-settings/-/tags/xfce4-settings-4.20.1
Signed-off-by: Jason Schonberg <schonm@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.20.1.bb (renamed from meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.20.0.bb) | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.20.0.bb b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.20.1.bb index 76ce27cc96..353ea9ed81 100644 --- a/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.20.0.bb +++ b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.20.1.bb | |||
@@ -8,9 +8,8 @@ inherit xfce features_check mime-xdg | |||
8 | 8 | ||
9 | REQUIRED_DISTRO_FEATURES = "x11" | 9 | REQUIRED_DISTRO_FEATURES = "x11" |
10 | 10 | ||
11 | SRC_URI[sha256sum] = "23548da3429a296501fbfdbc98a861ee241b9fdd47e8d5de1781f57c6bbce5a9" | 11 | SRC_URI[sha256sum] = "fd0d602853ea75d94024e5baae2d2bf5ca8f8aa4dad7bfd5d08f9ff8afee77b2" |
12 | 12 | ||
13 | CFLAGS += " -Wno-deprecated-declarations -Wno-implicit-function-declaration" | ||
14 | EXTRA_OECONF += " \ | 13 | EXTRA_OECONF += " \ |
15 | GDBUS_CODEGEN=${STAGING_BINDIR_NATIVE}/gdbus-codegen \ | 14 | GDBUS_CODEGEN=${STAGING_BINDIR_NATIVE}/gdbus-codegen \ |
16 | --enable-maintainer-mode --disable-debug \ | 15 | --enable-maintainer-mode --disable-debug \ |