aboutsummaryrefslogtreecommitdiffstats
path: root/test/read_mixer.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-10-24 18:30:30 +0200
committerMax Kellermann <max@duempel.org>2014-10-24 18:30:30 +0200
commit6cf1acfb4885a86c35312e160f02a6739887a8a0 (patch)
tree0c923f7137c0184eb4e4d191abb7337f3486c7b8 /test/read_mixer.cxx
parenta7b09d3d1ce3ada362c765217633f4da9c36ce63 (diff)
downloadmpd-6cf1acfb4885a86c35312e160f02a6739887a8a0.tar.gz
mpd-6cf1acfb4885a86c35312e160f02a6739887a8a0.tar.xz
mpd-6cf1acfb4885a86c35312e160f02a6739887a8a0.zip
test/DumpDatabase, ...: no g_thread_init() calls when GLib is disabled
Diffstat (limited to '')
-rw-r--r--test/read_mixer.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/read_mixer.cxx b/test/read_mixer.cxx
index 97529057f..de77a00c4 100644
--- a/test/read_mixer.cxx
+++ b/test/read_mixer.cxx
@@ -28,7 +28,9 @@
#include "util/Error.hxx"
#include "Log.hxx"
+#ifdef HAVE_GLIB
#include <glib.h>
+#endif
#include <assert.h>
#include <string.h>
@@ -50,9 +52,11 @@ int main(int argc, gcc_unused char **argv)
return EXIT_FAILURE;
}
+#ifdef HAVE_GLIB
#if !GLIB_CHECK_VERSION(2,32,0)
g_thread_init(NULL);
#endif
+#endif
EventLoop event_loop;