gnome-settings-daemon r362 - trunk



Author: jensg
Date: Mon Jun  2 20:13:29 2008
New Revision: 362
URL: http://svn.gnome.org/viewvc/gnome-settings-daemon?rev=362&view=rev

Log:
2008-06-02  Jens Granseuer  <jensgr gmx net>

	* configure.ac: do not add stuff to GST_LIBS when gstreamer is
	disabled. Fixes build without gstreamer (bug #536177)


Modified:
   trunk/ChangeLog
   trunk/configure.ac

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac	(original)
+++ trunk/configure.ac	Mon Jun  2 20:13:29 2008
@@ -251,7 +251,9 @@
    PKG_CHECK_MODULES(GST, $PKGS, have_gstreamer=yes,
                      AC_MSG_RESULT([no]))
 
-   GST_LIBS="$GST_LIBS -lgstinterfaces-0.10 -lgstaudio-0.10"
+   if test "x$have_gstreamer" = "xyes"; then
+      GST_LIBS="$GST_LIBS -lgstinterfaces-0.10 -lgstaudio-0.10"
+   fi
 else
    AC_MSG_NOTICE([*** GStreamer support disabled ***])
 fi



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