mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
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:
parent
425bdc10ec
commit
e845c86c64
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue