From 5e4fa2b6770090685dfaecc9b8863c6aeced5510 Mon Sep 17 00:00:00 2001 From: Maarten Duijndam Date: Tue, 22 Oct 2024 13:36:04 +0200 Subject: [PATCH] Add HAVE_GSTREAMER to config header --- psy/meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/psy/meson.build b/psy/meson.build index 95fd3c2..a9117cd 100644 --- a/psy/meson.build +++ b/psy/meson.build @@ -93,6 +93,10 @@ if portaudio_dep.found() cdata.set('HAVE_PORTAUDIO', true) endif +if gstreamer_dep.found() + cdata.set('HAVE_GSTREAMER', true) +endif + configure_file ( input : 'psy-config.h.in', output : 'psy-config.h',