Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2020-08-03 13:35:33 +0000
committerAlexander Kurtakov2020-08-03 13:35:33 +0000
commitc4c39fe2d36f1576013ba33f4cb19c603bd0c393 (patch)
tree47c3f8c76be5a8b16633ab8a66a7e16723dcd2ec
parent16056e80642d4dc9708672243c05b3917b764ecd (diff)
downloadrt.equinox.framework-c4c39fe2d36f1576013ba33f4cb19c603bd0c393.tar.gz
rt.equinox.framework-c4c39fe2d36f1576013ba33f4cb19c603bd0c393.tar.xz
rt.equinox.framework-c4c39fe2d36f1576013ba33f4cb19c603bd0c393.zip
Bug 565790 - Set min required gtk version in launcher to match SWT
SWT requires 3.20 so launcher should require the same. Change-Id: I76658e7fd491a8d38274fb4e6386bca301d7e71f Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--features/org.eclipse.equinox.executable.feature/library/gtk/eclipseGtkInit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/library/gtk/eclipseGtkInit.c b/features/org.eclipse.equinox.executable.feature/library/gtk/eclipseGtkInit.c
index 42b6c8e4a..4d3410836 100644
--- a/features/org.eclipse.equinox.executable.feature/library/gtk/eclipseGtkInit.c
+++ b/features/org.eclipse.equinox.executable.feature/library/gtk/eclipseGtkInit.c
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2018 IBM Corporation and others.
+ * Copyright (c) 2007, 2020 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -27,7 +27,7 @@ static _TCHAR* gtkInitFail = _T_ECLIPSE("Unable to initialize GTK+\n");
static _TCHAR* upgradeWarning1 = _T_ECLIPSE("\nPlease upgrade GTK+ to minimum version");
static _TCHAR* upgradeWarning2 = _T_ECLIPSE("\nor use an older version of Eclipse.\nClick OK to Exit.");
static int minGtkMajorVersion = 3;
-static int minGtkMinorVersion = 0;
+static int minGtkMinorVersion = 20;
static int minGtkMicroVersion = 0;
/* tables to help initialize the function pointers */

Back to the top