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: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6374>
This commit is contained in:
L. E. Segovia 2024-03-14 19:51:08 +00:00 committed by GStreamer Marge Bot
parent c1ac015325
commit 1f119b2035

View file

@ -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]