aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-30 19:43:25 +0100
committerMax Kellermann <max@duempel.org>2009-01-30 19:43:25 +0100
commit590082767530834ed3abff9009f9169dba4bd16f (patch)
tree8669fb2d7aac1f3081f3cc1dd10a5e06d3ee5e31 /src
parent5b85288664f6f45172bb812a739e9b0cc8f1e974 (diff)
downloadmpd-590082767530834ed3abff9009f9169dba4bd16f.tar.gz
mpd-590082767530834ed3abff9009f9169dba4bd16f.tar.xz
mpd-590082767530834ed3abff9009f9169dba4bd16f.zip
configure.ac: detect jack_set_info_function()
jack_set_info_function() is not provided by older libjack versions. Attempt to detect if it is available.
Diffstat (limited to 'src')
-rw-r--r--src/output/jack_plugin.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/output/jack_plugin.c b/src/output/jack_plugin.c
index 0439fa5cd..4f2edbf87 100644
--- a/src/output/jack_plugin.c
+++ b/src/output/jack_plugin.c
@@ -165,11 +165,13 @@ mpd_jack_error(const char *msg)
g_warning("%s", msg);
}
+#ifdef HAVE_JACK_SET_INFO_FUNCTION
static void
mpd_jack_info(const char *msg)
{
g_message("%s", msg);
}
+#endif
static void *
mpd_jack_init(struct audio_output *ao,
@@ -205,7 +207,10 @@ mpd_jack_init(struct audio_output *ao,
config_get_block_unsigned(param, "ringbuffer_size", 32768);
jack_set_error_function(mpd_jack_error);
+
+#ifdef HAVE_JACK_SET_INFO_FUNCTION
jack_set_info_function(mpd_jack_info);
+#endif
return jd;
}