Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2014-11-05 12:39:17 +0000
committerArun Thondapu2014-12-04 12:25:58 +0000
commitc994f822e77cd174da258638d9e44dfb85e001fc (patch)
tree95eaad3887e62a2efde0072520235fa0c705865f /features/org.eclipse.equinox.executable.feature/library/eclipse.c
parent5edff071f39e0ef13a898469a46a667e4fce67ba (diff)
downloadrt.equinox.framework-c994f822e77cd174da258638d9e44dfb85e001fc.tar.gz
rt.equinox.framework-c994f822e77cd174da258638d9e44dfb85e001fc.tar.xz
rt.equinox.framework-c994f822e77cd174da258638d9e44dfb85e001fc.zip
Bug 450486 - [GTK+] Make GTK+ 2.18 the minimum supported version
Change-Id: I2d07db2db9b7b6305614eea2aafd6dc266a0c70a Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'features/org.eclipse.equinox.executable.feature/library/eclipse.c')
-rw-r--r--features/org.eclipse.equinox.executable.feature/library/eclipse.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/library/eclipse.c b/features/org.eclipse.equinox.executable.feature/library/eclipse.c
index c5e399e16..2f448daee 100644
--- a/features/org.eclipse.equinox.executable.feature/library/eclipse.c
+++ b/features/org.eclipse.equinox.executable.feature/library/eclipse.c
@@ -203,6 +203,7 @@ static _TCHAR* returnCodeMsg = _T_ECLIPSE("Java was started but returned exit co
static _TCHAR* goVMMsg = _T_ECLIPSE("Start VM: %s\n");
static _TCHAR* pathMsg = _T_ECLIPSE("%s in your current PATH");
static _TCHAR* shareMsg = _T_ECLIPSE("No exit data available.");
+static _TCHAR* gtkCheck = _T_ECLIPSE("GTK+ Version Check");
static _TCHAR* noVMMsg =
_T_ECLIPSE("A Java Runtime Environment (JRE) or Java Development Kit (JDK)\n\
must be available in order to run %s. No Java virtual machine\n\
@@ -603,6 +604,11 @@ static int _run(int argc, _TCHAR* argv[], _TCHAR* vmArgs[])
}
}
+#ifndef _WIN32
+#ifndef MACOSX
+ displayMessage( officialName, gtkCheck );
+#endif
+#endif
/* the startup jarFile goes on the classpath */
if (launchMode == LAUNCH_JNI) {
/* JNI launching, classpath is set using -Djava.class.path */

Back to the top