gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog configure.ac


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog configure.ac
Date: Wed, 26 Jul 2006 01:33:27 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  06/07/26 01:33:27

Modified files:
        .              : ChangeLog configure.ac 

Log message:
        * configure.ac: print GSTREAMER flags if gst sound is enabled (also 
abort if the lib is not found)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.523&r2=1.524
http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.91&r2=1.92

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.523
retrieving revision 1.524
diff -u -b -r1.523 -r1.524
--- ChangeLog   26 Jul 2006 00:55:46 -0000      1.523
+++ ChangeLog   26 Jul 2006 01:33:27 -0000      1.524
@@ -1,5 +1,7 @@
 2006-07-26 Sandro Santilli <address@hidden>
 
+       * configure.ac: print GSTREAMER flags if gst sound is enabled
+         (also abort if the lib is not found)
        * macros/glib.m4: fixed to allow for custom glib installations
        * configure.ac, backend/Makefile.am: add --enable-sound option
          to select between SDL or GSTREAMER

Index: configure.ac
===================================================================
RCS file: /sources/gnash/gnash/configure.ac,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -b -r1.91 -r1.92
--- configure.ac        26 Jul 2006 00:21:39 -0000      1.91
+++ configure.ac        26 Jul 2006 01:33:27 -0000      1.92
@@ -728,6 +728,20 @@
 dnl    nogo=true
 fi
 
+if test "$sound_handler" = "gst"; then
+  if test x"$GSTREAMER_LIBS" != x; then
+    if test x"$GSTREAMER_CFLAGS" != x; then
+      echo "        GSTREAMER flags are: $GSTREAMER_CFLAGS"
+    else
+      echo "        GSTREAMER flags are: default include path"
+    fi
+      echo "        GSTREAMER libs are: $GSTREAMER_LIBS"
+  else
+    echo "WARNING: gstreamer sound requested, but no gstreamer found"
+    nogo=true
+  fi
+fi
+
 if test "$renderer" = "cairo"; then
   if test x"$CAIRO_LIBS" != x; then
     if test x"$CAIRO_CFLAGS" != x; then




reply via email to

[Prev in Thread] Current Thread [Next in Thread]