diff options
author | Niels De Graef <niels.degraef@barco.com> | 2019-05-31 23:10:33 +0200 |
---|---|---|
committer | Niels De Graef <niels.degraef@barco.com> | 2019-06-03 08:56:23 +0200 |
commit | 8f884aa9bc2b5d2d0ed9442ff334060000df941a (patch) | |
tree | 117c0a65f923168d191d390a6506d7134c9d66ab /tests | |
parent | e62b321efeb910c7f88724c76049a2a0b98171f5 (diff) |
meson: Bump minimal GLib version to 2.44
This means we can use some newer features and get rid of some
boilerplate code using the G_DECLARE_* macros.
As discussed on IRC, 2.44 is old enough by now to start depending on it.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/output.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/output.c b/tests/output.c index e1ac5cc6..b100f032 100644 --- a/tests/output.c +++ b/tests/output.c @@ -121,11 +121,6 @@ video_output_init (int *argc, char *argv[], GOptionEntry * options) GOptionContext *ctx; gboolean success; -#if !GLIB_CHECK_VERSION(2,31,0) - if (!g_thread_supported ()) - g_thread_init (NULL); -#endif - ctx = g_option_context_new ("- test options"); if (!ctx) return FALSE; |