From 6e15cb7e04b7142103e63741ae9e6df0b7d7ff99 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Tue, 17 Jan 2023 23:43:07 -0800 Subject: [PATCH] libmimetic: Pin to using -std=c++14 It uses unary_function which is removed in c++17 | ../../../git/mimetic/rfc822/header.h:37:21: error: no template named 'unary_function' in namespace 'std'; did you mean '__unary_function'? | public std::unary_function | ~~~~~^~~~~~~~~~~~~~ Signed-off-by: Khem Raj --- meta-oe/recipes-support/libmimetic/libmimetic_0.9.8.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-support/libmimetic/libmimetic_0.9.8.bb b/meta-oe/recipes-support/libmimetic/libmimetic_0.9.8.bb index fc0b1ee495..06536ca70f 100644 --- a/meta-oe/recipes-support/libmimetic/libmimetic_0.9.8.bb +++ b/meta-oe/recipes-support/libmimetic/libmimetic_0.9.8.bb @@ -19,6 +19,6 @@ UPSTREAM_CHECK_COMMITS = "1" S = "${WORKDIR}/git" -CXXFLAGS += "-Wno-narrowing" +CXXFLAGS += "-Wno-narrowing -std=c++14" inherit autotools