build-sys: Properly check for HAVE_DBUS in module-ladspa-sink
authorPeter Meerwald <pmeerw@pmeerw.net>
Wed, 13 Feb 2013 16:26:49 +0000 (17:26 +0100)
committerTanu Kaskinen <tanuk@iki.fi>
Thu, 14 Feb 2013 13:06:59 +0000 (15:06 +0200)
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>
src/modules/module-ladspa-sink.c

index e18e674..b361493 100644 (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