diff options
author | Max Kellermann <max@duempel.org> | 2014-10-24 18:30:30 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-10-24 18:30:30 +0200 |
commit | 6cf1acfb4885a86c35312e160f02a6739887a8a0 (patch) | |
tree | 0c923f7137c0184eb4e4d191abb7337f3486c7b8 /test/read_mixer.cxx | |
parent | a7b09d3d1ce3ada362c765217633f4da9c36ce63 (diff) |
test/DumpDatabase, ...: no g_thread_init() calls when GLib is disabled
Diffstat (limited to 'test/read_mixer.cxx')
-rw-r--r-- | test/read_mixer.cxx | 4 |
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; |