mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-09 18:30:08 +00:00
build: only compile plug/socket when available
Plug and Socket require X11 windowing. Often times this is compiled on systems with both wayland and x11, but not always. Quartz is an example where it is usually not compiled.
This commit is contained in:
parent
f7e0deb7cb
commit
5bb9c1891c
@ -417,11 +417,10 @@ test_type (gconstpointer data)
|
||||
/* Backend-specific */
|
||||
#ifdef GDK_WINDOWING_X11
|
||||
if (GDK_IS_X11_DISPLAY (gdk_display_get_default ())) ;
|
||||
else
|
||||
#endif
|
||||
if (g_type_is_a (type, GTK_TYPE_PLUG) ||
|
||||
g_type_is_a (type, GTK_TYPE_SOCKET))
|
||||
else if (g_type_is_a (type, GTK_TYPE_PLUG) ||
|
||||
g_type_is_a (type, GTK_TYPE_SOCKET))
|
||||
return;
|
||||
#endif
|
||||
|
||||
#ifdef GDK_WINDOWING_WAYLAND
|
||||
if (GDK_IS_WAYLAND_DISPLAY (gdk_display_get_default ()))
|
||||
|
Loading…
Reference in New Issue
Block a user