build-sys: Properly check for HAVE_DBUS in module-ladspa-sink

prevents
  CC     module_ladspa_sink_la-module-ladspa-sink.lo
modules/module-ladspa-sink.c:1332:5: warning: "HAVE_DBUS" is not defined
modules/module-ladspa-sink.c:1370:5: warning: "HAVE_DBUS" is not defined
in case HAVE_DBUS is not available

Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
This commit is contained in:
Peter Meerwald 2013-02-13 17:26:49 +01:00 committed by Tanu Kaskinen
parent 425bdc10ec
commit e845c86c64

View file

@ -1329,7 +1329,7 @@ int pa__init(pa_module*m) {
pa_sink_put(u->sink);
pa_sink_input_put(u->sink_input);
#if HAVE_DBUS
#ifdef HAVE_DBUS
dbus_init(u);
#endif
@ -1367,7 +1367,7 @@ void pa__done(pa_module*m) {
/* See comments in sink_input_kill_cb() above regarding
* destruction order! */
#if HAVE_DBUS
#ifdef HAVE_DBUS
dbus_done(u);
#endif