From 1f119b20350d7664e6a381329b9261aecce371cd Mon Sep 17 00:00:00 2001 From: "L. E. Segovia" Date: Thu, 14 Mar 2024 19:51:08 +0000 Subject: [PATCH] soundtouch: Fix build failure with Apple Clang caused by missing cpp_std Apple Clang sets C++98 by default. I'm applying C++14 to account for Meson's lack of support/fallback for `cpp_std=c++11`. Part-of: --- subprojects/gst-plugins-bad/ext/soundtouch/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/subprojects/gst-plugins-bad/ext/soundtouch/meson.build b/subprojects/gst-plugins-bad/ext/soundtouch/meson.build index 83967e5833..5d7782bbd2 100644 --- a/subprojects/gst-plugins-bad/ext/soundtouch/meson.build +++ b/subprojects/gst-plugins-bad/ext/soundtouch/meson.build @@ -33,6 +33,7 @@ if soundtouch_dep.found() cpp_args : gst_plugins_bad_args + soundtouch_cargs, include_directories : [configinc], dependencies : [gstaudio_dep, soundtouch_dep], + override_options: ['cpp_std=c++14'], install : true, install_dir : plugins_install_dir) plugins += [gstsoundtouch]