summaryrefslogtreecommitdiffstats
path: root/gtk/spice-audio.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/spice-audio.c')
-rw-r--r--gtk/spice-audio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/spice-audio.c b/gtk/spice-audio.c
index e7af7d5..638f667 100644
--- a/gtk/spice-audio.c
+++ b/gtk/spice-audio.c
@@ -45,7 +45,7 @@
#ifdef WITH_PULSE
#include "spice-pulse.h"
#endif
-#ifdef WITH_GSTAUDIO
+#if defined(WITH_GSTAUDIO) || defined(WITH_GST1AUDIO)
#include "spice-gstaudio.h"
#endif
@@ -217,7 +217,7 @@ SpiceAudio *spice_audio_new(SpiceSession *session, GMainContext *context,
#ifdef WITH_PULSE
self = SPICE_AUDIO(spice_pulse_new(session, context, name));
#endif
-#ifdef WITH_GSTAUDIO
+#if defined(WITH_GSTAUDIO) || defined(WITH_GST1AUDIO)
self = SPICE_AUDIO(spice_gstaudio_new(session, context, name));
#endif
if (!self)