[Spice-devel] [client 08/11] build-sys: Check for GStreamer 1.0 audio with SPICE_CHECK_GSTREAMER()

Francois Gouget fgouget at codeweavers.com
Tue Nov 3 04:06:13 PST 2015


Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
---
 configure.ac | 19 ++++++++-----------
 1 file changed, 8 insertions(+), 11 deletions(-)

This patch depends on [client 07/11] and [common 02/11].

diff --git a/configure.ac b/configure.ac
index ddaab2a..3a19c03 100644
--- a/configure.ac
+++ b/configure.ac
@@ -313,19 +313,16 @@ AC_ARG_ENABLE([gstaudio],
   [],
   [enable_gstaudio="auto"])
 AS_IF([test "x$enable_gstaudio" != "xno"],
-      [PKG_CHECK_MODULES(GSTAUDIO, [gstreamer-1.0 gstreamer-base-1.0 gstreamer-app-1.0 gstreamer-audio-1.0],
-         [AC_DEFINE([HAVE_GSTAUDIO], 1, [Have GStreamer 1.0 audio support?])
-          enable_gstaudio="yes"],
+      [SPICE_CHECK_GSTREAMER(GSTAUDIO, 1.0, [gstreamer-1.0 gstreamer-base-1.0 gstreamer-app-1.0 gstreamer-audio-1.0],
+         [],
          [AS_IF([test "x$enable_gstaudio" = "xyes"],
                 AC_MSG_ERROR([GStreamer 1.0 audio requested but not found]))
-          enable_gstaudio="no"
-      ])
-])
-AM_CONDITIONAL([SUPPORT_GSTAUDIO], [test "x$enable_gstaudio" = "xyes"])
-AC_SUBST(GSTAUDIO_CFLAGS)
-AC_SUBST(GSTAUDIO_LIBS)
+         ])
+      ], [have_gstaudio="no"]
+)
+AM_CONDITIONAL([SUPPORT_GSTAUDIO], [test "x$have_gstaudio" = "xyes"])
 
-AS_IF([test "x$enable_pulse$enable_gstaudio" = "xnono"],
+AS_IF([test "x$enable_pulse$have_gstaudio" = "xnono"],
       [SPICE_WARNING([No PulseAudio or GStreamer 1.0 audio decoder, audio will not be streamed])
 ])
 
@@ -736,7 +733,7 @@ AC_MSG_NOTICE([
         Gtk:                      ${with_gtk}
         Coroutine:                ${with_coroutine}
         PulseAudio:               ${enable_pulse}
-        GStreamer Audio:          ${enable_gstaudio}
+        GStreamer Audio:          ${have_gstaudio}
         SASL support:             ${enable_sasl}
         Smartcard support:        ${have_smartcard}
         USB redirection support:  ${have_usbredir} ${with_usbredir_hotplug}
-- 
2.6.1



More information about the Spice-devel mailing list