Remove call to XInitThreads

As SDL (which calls XInitThreads internally) is now initialized
before GTK, this is no longer needed.

This reverts commits f5b277548b,
ccf38a4005 and
19033a4a39.
This commit is contained in:
robxnano 2024-10-08 13:38:27 +01:00
parent 52c5db16e4
commit e35f659764
No known key found for this signature in database
GPG Key ID: 9FB6B03B782D1E42
4 changed files with 0 additions and 18 deletions

View File

@ -916,9 +916,6 @@ if [[ "x$WANT_SDL_VIDEO" = "xyes" ]]; then
EXTRASYSSRCS="$EXTRASYSSRCS ../dummy/clip_dummy.cpp"
;;
esac
if [[ "$WANT_GTK" != "no" ]]; then
LIBS="$LIBS -lX11"
fi
fi
elif [[ "x$WANT_MACOSX_GUI" != "xyes" ]]; then
VIDEOSRCS="video_x.cpp"

View File

@ -67,9 +67,6 @@ struct sigstate {
#ifdef ENABLE_GTK
# include <gtk/gtk.h>
# include <gdk/gdk.h>
# if !defined(GDK_WINDOWING_QUARTZ) && !defined(GDK_WINDOWING_WAYLAND)
# include <X11/Xlib.h>
# endif
# if GTK_CHECK_VERSION(3, 14, 0)
# define ENABLE_GTK3
# endif
@ -455,9 +452,6 @@ int main(int argc, char **argv)
#ifdef ENABLE_GTK3
GtkApplication *app = NULL;
int ret;
#endif
#if defined(ENABLE_GTK) && !defined(GDK_WINDOWING_QUARTZ) && !defined(GDK_WINDOWING_WAYLAND)
XInitThreads();
#endif
const char *vmdir = NULL;
char str[256];

View File

@ -790,9 +790,6 @@ if [[ "x$WANT_SDL_VIDEO" = "xyes" ]]; then
CPPFLAGS="$CPPFLAGS -I../MacOSX"
else
EXTRASYSSRCS="$EXTRASYSSRCS ../dummy/clip_dummy.cpp"
if [[ "$WANT_GTK" != "no" ]]; then
LIBS="$LIBS -lX11"
fi
fi
else
VIDEOSRCS="video_x.cpp"

View File

@ -141,9 +141,6 @@
#ifdef ENABLE_GTK
#include <gtk/gtk.h>
#include <gdk/gdk.h>
#if !defined(GDK_WINDOWING_QUARTZ) && !defined(GDK_WINDOWING_WAYLAND)
#include <X11/Xlib.h>
#endif
#if GTK_CHECK_VERSION(3, 14, 0)
#define ENABLE_GTK3
#endif
@ -794,9 +791,6 @@ int main(int argc, char **argv)
#ifdef ENABLE_GTK3
GtkApplication *app = NULL;
int ret;
#endif
#if defined(ENABLE_GTK) && !defined(GDK_WINDOWING_QUARTZ) && !defined(GDK_WINDOWING_WAYLAND)
XInitThreads();
#endif
char str[256];
bool memory_mapped_from_zero, ram_rom_areas_contiguous;