Revert "glib version checks for MSYS"

This reverts commit bb6171bbb2.
This commit is contained in:
Robin Gareus 2025-11-20 22:00:12 +01:00
parent e7c30d2022
commit fc3b79dd58
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
2 changed files with 0 additions and 6 deletions

View file

@ -261,11 +261,9 @@ int main (int argc, char *argv[])
load_custom_fonts(); /* needs to happen before any gtk and pango init calls */ load_custom_fonts(); /* needs to happen before any gtk and pango init calls */
#if !GLIB_CHECK_VERSION(2,32,0)
if (!Glib::thread_supported()) { if (!Glib::thread_supported()) {
Glib::thread_init(); Glib::thread_init();
} }
#endif
#ifdef LXVST_SUPPORT #ifdef LXVST_SUPPORT
XInitThreads (); XInitThreads ();

View file

@ -28,9 +28,7 @@
#include <giomm.h> #include <giomm.h>
#if !GLIB_CHECK_VERSION(2,32,0)
#include <glibmm/thread.h> #include <glibmm/thread.h>
#endif
#include "pbd/pbd.h" #include "pbd/pbd.h"
#include "pbd/ccurl.h" #include "pbd/ccurl.h"
@ -89,13 +87,11 @@ PBD::init ()
} }
#endif #endif
#if !GLIB_CHECK_VERSION(2,32,0)
if (!Glib::thread_supported()) { if (!Glib::thread_supported()) {
Glib::thread_init(); Glib::thread_init();
} }
Gio::init (); Gio::init ();
#endif
PBD::ID::init (); PBD::ID::init ();