summaryrefslogtreecommitdiffstats
path: root/meta-networking
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2025-03-19 13:38:33 -0700
committerKhem Raj <raj.khem@gmail.com>2025-03-20 08:46:56 -0700
commitaa42e3522592860e09de8381afcedc855c782f6e (patch)
tree17facfa9c9a7fa82d5b984bce02c0f6a4a5f0b9e /meta-networking
parenteac1f5b9c0b1b81aa24827be94e4a1a91cd49eee (diff)
downloadmeta-openembedded-aa42e3522592860e09de8381afcedc855c782f6e.tar.gz
openl2tp: Pin to C17 std
Does not compile with C23 with GCC-15 and the last release was long time ago. Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking')
-rw-r--r--meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb b/meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb
index d66b7d2390..4e5b45891d 100644
--- a/meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb
+++ b/meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb
@@ -48,7 +48,7 @@ SYSTEMD_AUTO_ENABLE = "disable"
48 48
49DEPENDS += "libtirpc" 49DEPENDS += "libtirpc"
50CPPFLAGS += "-I${STAGING_INCDIR}/tirpc" 50CPPFLAGS += "-I${STAGING_INCDIR}/tirpc"
51CFLAGS += "-I${STAGING_INCDIR}/tirpc" 51CFLAGS += "-I${STAGING_INCDIR}/tirpc -std=gnu17"
52LDFLAGS += "-ltirpc" 52LDFLAGS += "-ltirpc"
53 53
54PARALLEL_MAKE = "" 54PARALLEL_MAKE = ""