summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/log4cpp
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2023-01-17 23:30:20 -0800
committerKhem Raj <raj.khem@gmail.com>2023-01-21 10:02:02 -0800
commit1ccdb819590c69335e5d7a5afbf797bd2e7f7629 (patch)
tree604a0c5b55ded181ff253cd2d0c3439be50d7ee9 /meta-oe/recipes-support/log4cpp
parent6f3ded8f27a60a7e8d99d1ba600f05d6a2755716 (diff)
downloadmeta-openembedded-1ccdb819590c69335e5d7a5afbf797bd2e7f7629.tar.gz
log4cpp: Keep using std=c++14
It still needs auto_ptr which is pre c++17 | ../../log4cpp/include/log4cpp/BufferingAppender.hh:21:81: error: no template named 'auto_ptr' in namespace 'std' Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/log4cpp')
-rw-r--r--meta-oe/recipes-support/log4cpp/log4cpp_1.1.3.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/log4cpp/log4cpp_1.1.3.bb b/meta-oe/recipes-support/log4cpp/log4cpp_1.1.3.bb
index d9a55dd761..8e6d455174 100644
--- a/meta-oe/recipes-support/log4cpp/log4cpp_1.1.3.bb
+++ b/meta-oe/recipes-support/log4cpp/log4cpp_1.1.3.bb
@@ -19,3 +19,5 @@ EXTRA_OECONF = "\
19 --enable-html-docs=no \ 19 --enable-html-docs=no \
20 --enable-latex-docs=no \ 20 --enable-latex-docs=no \
21" 21"
22
23CXXFLAGS += "-std=c++14"