Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul D'Pong2020-11-09 17:38:35 +0000
committerAlexander Kurtakov2020-11-09 18:00:57 +0000
commiteb5950abf908332cb77082e89ba38392467bb543 (patch)
tree3a1a0022f4f6d3e115c5624480bf9f13f9689f19
parent6c16f919b0cf84a833b695340fe4b57744c1dbb2 (diff)
downloadeclipse.platform.swt-eb5950abf908332cb77082e89ba38392467bb543.tar.gz
eclipse.platform.swt-eb5950abf908332cb77082e89ba38392467bb543.tar.xz
eclipse.platform.swt-eb5950abf908332cb77082e89ba38392467bb543.zip
Bug 568648 - [GTK4] Update to GTK3.99.4
Change-Id: I8451b9260724adf08dece22b9c33839fdcdb281d Signed-off-by: Paul D'Pong <sdamrong@redhat.com>
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.h6
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.h b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.h
index d59ebbf5e4..ad2978dc4c 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.h
@@ -95,7 +95,7 @@
#if defined(GDK_WINDOWING_X11)
-#if !GTK_CHECK_VERSION(3,99,3)
+#if !GTK_CHECK_VERSION(3,99,4)
#include <gtk/gtkx.h>
#define NO_gdk_1x11_1surface_1get_1xid
#define NO_gdk_1x11_1surface_1lookup_1for_1display
@@ -108,7 +108,7 @@
#define NO_gtk_1socket_1get_1id
#define NO_gtk_1socket_1new
#endif
-#if !GTK_CHECK_VERSION(3,99,3)
+#if !GTK_CHECK_VERSION(3,99,4)
#include <gdk/gdkx.h>
#else
#include <gdk/x11/gdkx.h>
@@ -168,7 +168,7 @@
#endif
-#if GTK_CHECK_VERSION(3,99,3)
+#if GTK_CHECK_VERSION(3,99,4)
#define GTK4 1
// Structs which do not exist on GTK4
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.h b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.h
index 4543c6baab..a0d957f839 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.h
@@ -39,9 +39,9 @@
#define LIB_FONTCONFIG "libfontconfig-1.dll"
#else
#if defined(GTK4)
-#define LIB_GTK "libgtk-4.so.0.9903.0"
+#define LIB_GTK "libgtk-4.so.0.9904.0"
// Point GDK to GTK for GTK4
-#define LIB_GDK "libgtk-4.so.0.9903.0"
+#define LIB_GDK "libgtk-4.so.0.9904.0"
#else
#define LIB_GTK "libgtk-3.so.0"
#define LIB_GDK "libgdk-3.so.0"

Back to the top