From e845c86c64e55c4596d5e72ddb42e995cc6b1c05 Mon Sep 17 00:00:00 2001 From: Peter Meerwald Date: Wed, 13 Feb 2013 17:26:49 +0100 Subject: [PATCH] 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 --- src/modules/module-ladspa-sink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/module-ladspa-sink.c b/src/modules/module-ladspa-sink.c index e18e674..b361493 100644 --- a/src/modules/module-ladspa-sink.c +++ b/src/modules/module-ladspa-sink.c @@ -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 -- 2.7.4