diff options
author | Khem Raj <raj.khem@gmail.com> | 2023-01-17 23:06:34 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-01-21 10:02:02 -0800 |
commit | 195c2045fdf8b9ba8114651efd849bccc9308d1f (patch) | |
tree | 5e029c52d88c1bc210ad656ac8fbad6674054589 | |
parent | b075f0e44c1fb83707233f1b4fbd9cc2a662628e (diff) | |
download | meta-openembedded-195c2045fdf8b9ba8114651efd849bccc9308d1f.tar.gz |
audiofile: Stick to c++14 std
It uses std::unary_function which is removed from c++17 onwards, until
this is removed/replaced we can not move beyond c++14
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-multimedia/audiofile/audiofile_0.3.6.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-oe/recipes-multimedia/audiofile/audiofile_0.3.6.bb b/meta-oe/recipes-multimedia/audiofile/audiofile_0.3.6.bb index e91c81d703..a09f84381e 100644 --- a/meta-oe/recipes-multimedia/audiofile/audiofile_0.3.6.bb +++ b/meta-oe/recipes-multimedia/audiofile/audiofile_0.3.6.bb | |||
@@ -19,6 +19,8 @@ SRC_URI[sha256sum] = "ea2449ad3f201ec590d811db9da6d02ffc5e87a677d06b92ab15363d8c | |||
19 | 19 | ||
20 | inherit autotools lib_package pkgconfig | 20 | inherit autotools lib_package pkgconfig |
21 | 21 | ||
22 | CXXFLAGS += "-std=c++14" | ||
23 | |||
22 | DEPENDS = " \ | 24 | DEPENDS = " \ |
23 | asciidoc-native \ | 25 | asciidoc-native \ |
24 | alsa-lib \ | 26 | alsa-lib \ |