summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2025-03-24 09:33:38 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-03-27 11:19:04 +0000
commit26fe9d59486e911c5075ed07a56d3805f6412a15 (patch)
tree8861bdcde0b8dee01383c4457c7f4b93e8fccd08
parentc7779118be42d1f5817e1dc78a6c6c9c62397523 (diff)
downloadpoky-26fe9d59486e911c5075ed07a56d3805f6412a15.tar.gz
xinetd: Pin to C17 std
GCC 15 is coming with C23 as default and code is not ready for C23 (From OE-Core rev: 9b8b9ebc7583f82dfee532dc1998c005a0c254c2) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-extended/xinetd/xinetd_2.3.15.4.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/xinetd/xinetd_2.3.15.4.bb b/meta/recipes-extended/xinetd/xinetd_2.3.15.4.bb
index 897747379b..d30f08dd72 100644
--- a/meta/recipes-extended/xinetd/xinetd_2.3.15.4.bb
+++ b/meta/recipes-extended/xinetd/xinetd_2.3.15.4.bb
@@ -30,7 +30,7 @@ INITSCRIPT_PARAMS = "defaults"
30PACKAGECONFIG ??= "tcp-wrappers" 30PACKAGECONFIG ??= "tcp-wrappers"
31PACKAGECONFIG[tcp-wrappers] = "--with-libwrap,,tcp-wrappers" 31PACKAGECONFIG[tcp-wrappers] = "--with-libwrap,,tcp-wrappers"
32 32
33CFLAGS += "-D_GNU_SOURCE" 33CFLAGS += "-D_GNU_SOURCE -std=gnu17"
34 34
35CONFFILES:${PN} = "${sysconfdir}/xinetd.conf" 35CONFFILES:${PN} = "${sysconfdir}/xinetd.conf"
36 36