Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2021-05-26 12:29:28 +0000
committerSravan Kumar Lakkimsetti2021-05-26 12:31:52 +0000
commit036bb0db3189eb1923839ab8e671aaadd9319f48 (patch)
treec096e1b676bbb6a1e264c6b46180545c49907632
parent747469f293e383cab25863838afee44ba26fb079 (diff)
downloadrt.equinox.framework-036bb0db3189eb1923839ab8e671aaadd9319f48.tar.gz
rt.equinox.framework-036bb0db3189eb1923839ab8e671aaadd9319f48.tar.xz
rt.equinox.framework-036bb0db3189eb1923839ab8e671aaadd9319f48.zip
Bug 572187 - Move Eclipse launcher executable to macOS 10.14 SDK withI20210526-1800
deployment target at 10.10 Change-Id: I1811045aba56c1c144222ece5268170163d8813f Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com> Reviewed-on: https://git.eclipse.org/r/c/equinox/rt.equinox.framework/+/181042
-rw-r--r--features/org.eclipse.equinox.executable.feature/library/cocoa/eclipseCocoaMain.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/library/cocoa/eclipseCocoaMain.c b/features/org.eclipse.equinox.executable.feature/library/cocoa/eclipseCocoaMain.c
index 052ce7edd..b36fe860b 100644
--- a/features/org.eclipse.equinox.executable.feature/library/cocoa/eclipseCocoaMain.c
+++ b/features/org.eclipse.equinox.executable.feature/library/cocoa/eclipseCocoaMain.c
@@ -52,8 +52,8 @@ int main( int argc, char* argv[] ) {
NSOperatingSystemVersion version = [[NSProcessInfo processInfo] operatingSystemVersion];
- if ((version.majorVersion < 10) || ((version.majorVersion == 10) && (version.minorVersion < 14))) {
- displayMessage("Error", "This application requires Mac OS 10.14 or greater.");
+ if ((version.majorVersion < 10) || ((version.majorVersion == 10) && (version.minorVersion < 10))) {
+ displayMessage("Error", "This application requires Mac OS 10.10 or greater.");
return 0;
}

Back to the top