GNOME Bugzilla – Bug 523743
don't check /desktop/gnome/sound/enable_esd, if configure --disable-esd
Last modified: 2008-03-24 17:18:14 UTC
Please describe the problem: gnome-setting-daemon compiled with "configure --disable-esd". In plugins/sound/gsd-sound-manager.c: #ifdef HAVE_ESD enable_sound = gconf_client_get_bool (client, "/desktop/gnome/sound/enable_esd", NULL); #else enable_sound = TRUE; #endif and next if (enable_sound)-> start_gnome_sound -> "esd -nobeeps"ALWAYS I to be in want of compile with "configure --disable-esd" and don't run esd, if /desktop/gnome/sound/enable_esd = FALSE Steps to reproduce: 1. 2. 3. Actual results: Expected results: Does this happen every time? Other information:
Created attachment 107763 [details] [review] always check in /desktop/gnome/sound/enable_esd
No, "esd" is started on purpose here. See bug 518075 for an explanation.
1. configure --disable-esd 2. set FALSE in gconf desktop/gnome/sound/enable_esd And i don't want start esd really. But esd startd, started, and again started. How disable esd?
Uninstall it? Although now that "esd" can mean both esd or PulseAudio, you probably have a point, so ... 2008-03-24 Jens Granseuer <jensgr@gmx.net> Patch by: Alexey Shabalin <a.shabalin@gmail.com> * plugins/sound/gsd-sound-manager.c: (apply_settings): now that "starting esd" can mean either esd or PulseAudio, check the GConf setting for starting the sound server even when esd is disabled (bug #523743)