Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2015-05-22 10:50:48 +0000
committerSravan Kumar Lakkimsetti2015-05-26 13:31:10 +0000
commitdb53ed0dece0186f5ea1adad05151206f8f259ce (patch)
tree8383b0d76b697b3f9b57ee7196f485b4db1baabf /features/org.eclipse.equinox.executable.feature/library/eclipse.c
parent29ec592f0e481080c3bb7679318c883fea15d458 (diff)
downloadrt.equinox.framework-db53ed0dece0186f5ea1adad05151206f8f259ce.tar.gz
rt.equinox.framework-db53ed0dece0186f5ea1adad05151206f8f259ce.tar.xz
rt.equinox.framework-db53ed0dece0186f5ea1adad05151206f8f259ce.zip
Bug 467991 - Enable GTK3 mode for eclipse on ppc64le platformI20150526-2010
- Modified GTK2 version check to match the ppc64le build platform(only on ppc64le) - Removed the code to force GTK2 execution eventhough GTK3 is available - Modified the code for the case where SWT_GTK3 flag is defined and no compatible gtk3 is available - Updated the patch based on review comments Change-Id: If66755fa938e3b57a464fa457756f97b1400a9ba 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.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/library/eclipse.c b/features/org.eclipse.equinox.executable.feature/library/eclipse.c
index c7663665e..444c89b88 100644
--- a/features/org.eclipse.equinox.executable.feature/library/eclipse.c
+++ b/features/org.eclipse.equinox.executable.feature/library/eclipse.c
@@ -527,13 +527,6 @@ static int _run(int argc, _TCHAR* argv[], _TCHAR* vmArgs[])
#endif
#endif
-#ifdef LINUX
-#ifdef __ppc64le__
- /* set the swt gtk3 flag to 0 so that we use only GTK2 on ppc64le platform */
- setenv("SWT_GTK3","0",1);
-#endif
-#endif
-
/* try to open the specified file in an already running eclipse */
/* on Mac we are only registering an event handler here, always do this */
#ifndef MACOSX

Back to the top