diff options
author | Max Kellermann <max@duempel.org> | 2013-04-17 01:53:10 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-04-17 01:54:14 +0200 |
commit | 4a800b311f5dfde74956edb29dee99998ba1ced1 (patch) | |
tree | 8768e1bb0faa7fc061811972845da521754792cf /test/read_mixer.cxx | |
parent | a4a13a382525527afeecd18f97e948bd6d0de64c (diff) |
don't use g_thread_init() with GLib 2.32
Deprecated.
Diffstat (limited to 'test/read_mixer.cxx')
-rw-r--r-- | test/read_mixer.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/read_mixer.cxx b/test/read_mixer.cxx index c96f0f630..8fc89e93d 100644 --- a/test/read_mixer.cxx +++ b/test/read_mixer.cxx @@ -119,7 +119,9 @@ int main(int argc, G_GNUC_UNUSED char **argv) return 1; } +#if !GLIB_CHECK_VERSION(2,32,0) g_thread_init(NULL); +#endif main_loop = new EventLoop(EventLoop::Default()); |