diff options
author | Max Kellermann <max@duempel.org> | 2009-11-10 21:14:22 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-11-10 21:14:22 +0100 |
commit | b722d3d7f365b106794a3f40435ab220098959c5 (patch) | |
tree | fc539d0aa20b0357547ced148cc88f18f648d7fe /src/input | |
parent | de57c21a3bec43bffb3fc6a85197f5489e18168f (diff) | |
download | mpd-b722d3d7f365b106794a3f40435ab220098959c5.tar.gz mpd-b722d3d7f365b106794a3f40435ab220098959c5.tar.xz mpd-b722d3d7f365b106794a3f40435ab220098959c5.zip |
configure.ac: require GLib 2.12
Drop the required GLib version from 2.16 to 2.12, because many current
systems still don't have GLib 2.16. This requires several new
compatibility functions in glib_compat.h.
Diffstat (limited to '')
-rw-r--r-- | src/input/curl_input_plugin.c | 1 | ||||
-rw-r--r-- | src/input_stream.h | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/input/curl_input_plugin.c b/src/input/curl_input_plugin.c index c3928a09b..b8e9435a0 100644 --- a/src/input/curl_input_plugin.c +++ b/src/input/curl_input_plugin.c @@ -23,6 +23,7 @@ #include "config.h" #include "tag.h" #include "icy_metadata.h" +#include "glib_compat.h" #include <assert.h> diff --git a/src/input_stream.h b/src/input_stream.h index 9e4a526ef..edecb8460 100644 --- a/src/input_stream.h +++ b/src/input_stream.h @@ -26,6 +26,10 @@ #include <stdbool.h> #include <sys/types.h> +#if !GLIB_CHECK_VERSION(2,14,0) +typedef gint64 goffset; +#endif + struct input_stream { /** * the plugin which implements this input stream |