View | Details | Raw Unified | Return to bug 277202 | Differences between
and this patch

Collapse All | Expand All

(-)library/carbon/build.sh (+1 lines)
Lines 66-71 Link Here
66
66
67
if [ "$DEFAULT_WS" == "cocoa" ]; then
67
if [ "$DEFAULT_WS" == "cocoa" ]; then
68
	makefile="make_cocoa.mak"
68
	makefile="make_cocoa.mak"
69
	export MACOSX_DEPLOYMENT_TARGET=10.4
69
else
70
else
70
	export MACOSX_DEPLOYMENT_TARGET=10.3	
71
	export MACOSX_DEPLOYMENT_TARGET=10.3	
71
fi
72
fi
(-)library/carbon/eclipseCarbonMain.c (-2 / +9 lines)
Lines 49-58 Link Here
49
	SInt32 systemVersion= 0;
49
	SInt32 systemVersion= 0;
50
	if (Gestalt(gestaltSystemVersion, &systemVersion) == noErr) {
50
	if (Gestalt(gestaltSystemVersion, &systemVersion) == noErr) {
51
		systemVersion &= 0xffff;
51
		systemVersion &= 0xffff;
52
#ifdef COCOA
53
		if (systemVersion < 0x1050) {
54
			displayMessage("Error", "This application requires Mac OS X 10.5 (Leopard) or greater.");
55
			return 0;
56
		}
57
#else
52
		if (systemVersion < 0x1020) {
58
		if (systemVersion < 0x1020) {
53
			displayMessage(getOfficialName(), "Eclipse requires Jaguar (Mac OS X >= 10.2)");
59
			displayMessage("Error", "This application requires Jaguar (Mac OS X >= 10.2)");
54
			return 0;
60
			return 0;
55
		}
61
		}
62
#endif
56
	}
63
	}
57
64
58
	fgConsoleLog= fopen("/dev/console", "w");
65
	fgConsoleLog= fopen("/dev/console", "w");
Lines 227-230 Link Here
227
	buffer[bl++]= c;
234
	buffer[bl++]= c;
228
	buffer[bl]= '\0';
235
	buffer[bl]= '\0';
229
	return buffer;
236
	return buffer;
230
}
237
}

Return to bug 277202