diff options
author | Max Kellermann <max@duempel.org> | 2014-12-04 23:58:48 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-12-05 00:21:48 +0100 |
commit | 5cbc319e964fb037793b51920b4ed164e8ed90af (patch) | |
tree | 4e1c98717312c28610cd219471f1c057dd470ab1 /test/dump_text_file.cxx | |
parent | d435dcdca46fd239cb4d25fa3c9db5c589a6a553 (diff) |
configure.ac: require GLib 2.32 (if enabled)
Since version 2.32, g_thread_init() is deprecated and a no-op. Let's
upgrade that (optional) dependency so we can remove all those
g_thread_init() calls.
Diffstat (limited to 'test/dump_text_file.cxx')
-rw-r--r-- | test/dump_text_file.cxx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/test/dump_text_file.cxx b/test/dump_text_file.cxx index 5bfd316a5..2ab95db5e 100644 --- a/test/dump_text_file.cxx +++ b/test/dump_text_file.cxx @@ -32,10 +32,6 @@ #include "archive/ArchiveList.hxx" #endif -#ifdef HAVE_GLIB -#include <glib.h> -#endif - #include <unistd.h> #include <stdio.h> #include <stdlib.h> @@ -79,14 +75,6 @@ int main(int argc, char **argv) return EXIT_FAILURE; } - /* initialize GLib */ - -#ifdef HAVE_GLIB -#if !GLIB_CHECK_VERSION(2,32,0) - g_thread_init(NULL); -#endif -#endif - /* initialize MPD */ config_global_init(); |