gnome-settings-daemon r568 - in trunk: . plugins plugins/sound



Author: jensg
Date: Wed Oct 29 18:33:24 2008
New Revision: 568
URL: http://svn.gnome.org/viewvc/gnome-settings-daemon?rev=568&view=rev

Log:
2008-10-29  Jens Granseuer  <jensgr gmx net>

	Remove ESD-based sound plugin (bug #557806). This means that g-s-d
	will no longer start a sound server (esd or PulseAudio) at session
	startup. This should be handled using the autostart mechanism of
	gnome-session instead.

	* configure.ac:
	* plugins/Makefile.am:
	* plugins/sound/Makefile.am:
	* plugins/sound/gsd-sound-manager.c:
	* plugins/sound/gsd-sound-manager.h:
	* plugins/sound/gsd-sound-plugin.c:
	* plugins/sound/gsd-sound-plugin.h:
	* plugins/sound/sound.gnome-settings-plugin.in:
	remove sound plugin


Removed:
   trunk/plugins/sound/
Modified:
   trunk/   (props changed)
   trunk/ChangeLog
   trunk/configure.ac
   trunk/plugins/Makefile.am

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac	(original)
+++ trunk/configure.ac	Wed Oct 29 18:33:24 2008
@@ -216,37 +216,6 @@
 AC_SUBST(LIBGNOMEKBD_LIBS)
 
 dnl ==============================================
-dnl Esd section
-dnl ==============================================
-
-AC_ARG_ENABLE(esd,
-  AC_HELP_STRING([--disable-esd],
-                 [turn off ESD audio support]),
-       [case "${enableval}" in
-               yes) WANT_ESD=yes ;;
-               no)  WANT_ESD=no ;;
-               *) AC_MSG_ERROR(bad value ${enableval} for --disable-esd) ;;
-       esac],
-       [WANT_ESD=yes]) dnl Default value
-
-if test x$WANT_ESD = xyes ; then
-       PKG_CHECK_MODULES(ESD, esound >= 0.2.28,
-	       AC_DEFINE(HAVE_ESD, 1, [Define if ESD sound server should be used]),
-               AC_MSG_RESULT([disabled]))
-
-       GSD_ESD_LOCATION=`pkg-config esound --variable=esd_serverdir`
-       if test "x$GSD_ESD_LOCATION" != "x"; then
-           # Add slash so that if the ESD pkgconfig file does not
-           # specify esd_serverdir, g-s-d will look in the PATH
-           GSD_ESD_LOCATION="$GSD_ESD_LOCATION/"
-       fi
-fi
-
-AC_SUBST(ESD_CFLAGS)
-AC_SUBST(ESD_LIBS)
-AC_SUBST(ESD_LOCATION)
-
-dnl ==============================================
 dnl GStreamer section
 dnl ==============================================
 GST_MAJORMINOR=auto
@@ -337,23 +306,6 @@
 AM_CONDITIONAL(HAVE_ALSA, test x"$have_alsa" = "xyes")
 
 # ---------------------------------------------------------------------------
-# Enable Legacy Sound Preference
-# ---------------------------------------------------------------------------
-PKG_CHECK_MODULES(PULSEAUDIO, libpulse, have_pulseaudio=yes, have_pulseaudio=no)
-if test x$have_pulseaudio = xyes; then
-	default_enable_legacy_sound_pref=no
-else
-	default_enable_legacy_sound_pref=yes
-fi
-AC_ARG_ENABLE(legacy-sound-pref,
-	[AC_HELP_STRING([--enable-legacy-sound-pref],
-	[check for preference to start ESD])],
-	,enable_legacy_sound_pref=$default_enable_legacy_sound_pref)
-if test "x$enable_legacy_sound_pref" = "xyes"; then
-    AC_DEFINE(ENABLE_LEGACY_SOUND_PREF,1,[enable preference for ESD startup])
-fi
-
-# ---------------------------------------------------------------------------
 # Enable Profiling
 # ---------------------------------------------------------------------------
 AC_ARG_ENABLE(profiling,
@@ -453,8 +405,6 @@
 plugins/media-keys/actions/Makefile
 plugins/mouse/Makefile
 plugins/screensaver/Makefile
-plugins/sound/Makefile
-plugins/sound/libsounds/Makefile
 plugins/typing-break/Makefile
 plugins/xrandr/Makefile
 plugins/xrdb/Makefile
@@ -495,7 +445,6 @@
         OSS support:              ${have_oss}
         ALSA support:             ${have_alsa}
         GStreamer support:        ${have_gstreamer}
-        ESD support:              ${WANT_ESD}
 
         Profiling support:        ${enable_profiling}
 "

Modified: trunk/plugins/Makefile.am
==============================================================================
--- trunk/plugins/Makefile.am	(original)
+++ trunk/plugins/Makefile.am	Wed Oct 29 18:33:24 2008
@@ -13,7 +13,6 @@
 	media-keys	\
 	mouse		\
 	screensaver	\
-	sound		\
 	typing-break	\
 	xrandr		\
 	xrdb		\



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