You can subscribe to this list here.
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(447) |
Nov
(163) |
Dec
(57) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2005 |
Jan
(172) |
Feb
|
Mar
(123) |
Apr
(64) |
May
(1) |
Jun
(278) |
Jul
(89) |
Aug
(97) |
Sep
(62) |
Oct
(53) |
Nov
(119) |
Dec
(60) |
| 2006 |
Jan
(76) |
Feb
(1094) |
Mar
(363) |
Apr
(163) |
May
(57) |
Jun
(43) |
Jul
(39) |
Aug
(15) |
Sep
(33) |
Oct
(62) |
Nov
(8) |
Dec
|
| 2007 |
Jan
(9) |
Feb
(34) |
Mar
(2) |
Apr
(14) |
May
(8) |
Jun
(40) |
Jul
(21) |
Aug
(1) |
Sep
(20) |
Oct
(15) |
Nov
(26) |
Dec
|
| 2008 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
(1) |
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(32) |
Jun
|
Jul
|
Aug
(3) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
| 2010 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(7) |
Dec
|
| 2012 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Andre R. <and...@us...> - 2004-10-27 09:27:08
|
Update of /cvsroot/frontierkernel/Frontier/build_XCode/Frontier.xcode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31809/Frontier/build_Xcode/Frontier.xcode Modified Files: project.pbxproj Log Message: Switch include path for paige library from absolute to project relative. Index: project.pbxproj =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/build_XCode/Frontier.xcode/project.pbxproj,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** project.pbxproj 26 Oct 2004 22:47:24 -0000 1.6 --- project.pbxproj 27 Oct 2004 09:27:00 -0000 1.7 *************** *** 626,630 **** GCC_WARN_UNUSED_VALUE = NO; GCC_WARN_UNUSED_VARIABLE = NO; ! LIBRARY_SEARCH_PATHS = "\"/Volumes/Data/Development/Frontier Open Source Release/cvsroot/Frontier/Common/Paige\""; OTHER_CFLAGS = "-fno-inline -malign-mac68k "; OTHER_LDFLAGS = "-multiply_defined warning"; --- 626,630 ---- GCC_WARN_UNUSED_VALUE = NO; GCC_WARN_UNUSED_VARIABLE = NO; ! LIBRARY_SEARCH_PATHS = ../Common/Paige; OTHER_CFLAGS = "-fno-inline -malign-mac68k "; OTHER_LDFLAGS = "-multiply_defined warning"; |
|
From: Andre R. <and...@us...> - 2004-10-26 22:47:37
|
Update of /cvsroot/frontierkernel/Frontier/build_XCode/Frontier.xcode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24172/Frontier/build_Xcode/Frontier.xcode Modified Files: project.pbxproj Log Message: Set prefix header and precompile option in Frontier target settings rather than just in the Deployment build style settings. Index: project.pbxproj =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/build_XCode/Frontier.xcode/project.pbxproj,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** project.pbxproj 26 Oct 2004 11:51:55 -0000 1.5 --- project.pbxproj 26 Oct 2004 22:47:24 -0000 1.6 *************** *** 48,53 **** GCC_GENERATE_DEBUGGING_SYMBOLS = YES; GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = NO; - GCC_PREFIX_HEADER = ""; GCC_WARN_UNKNOWN_PRAGMAS = YES; REZ_PREPROCESSOR_DEFINITIONS = ""; --- 48,51 ---- |
|
From: Andre R. <and...@us...> - 2004-10-26 22:33:59
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21079/Frontier/Common/source Modified Files: osacomponent.c Log Message: Use the same code for the Carbon/CFM and Carbon/Mach-O version to deal with Universal Procedure Pointers (UPPs) for OSA callback functions. Index: osacomponent.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/osacomponent.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** osacomponent.c 23 Oct 2004 22:46:24 -0000 1.2 --- osacomponent.c 26 Oct 2004 22:33:35 -0000 1.3 *************** *** 218,222 **** long* refCon); ! #if !TARGET_RT_MAC_CFM #define cmpcloseUPP ((ComponentFunctionUPP) cmpclose) --- 218,222 ---- long* refCon); ! #if 0 //!TARGET_RT_MAC_CFM #define cmpcloseUPP ((ComponentFunctionUPP) cmpclose) *************** *** 694,698 **** #endif ! #if !TARGET_RT_MAC_CFM #define osaclientactiveUPP (&osaclientactive) --- 694,698 ---- #endif ! #if 0//!TARGET_RT_MAC_CFM #define osaclientactiveUPP (&osaclientactive) *************** *** 883,887 **** #endif ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM DisposeOSAActiveUPP((**hcg).activeproc); DisposeOSASendUPP((**hcg).sendproc); --- 883,887 ---- #endif ! #if TARGET_API_MAC_CARBON DisposeOSAActiveUPP((**hcg).activeproc); DisposeOSASendUPP((**hcg).sendproc); *************** *** 983,987 **** //Code change by Timothy Paustian Friday, July 21, 2000 10:52:57 PM //I think I can get away with this because only frontier code calls it. ! #if !TARGET_RT_MAC_CFM #define osadefaultactiveUPP ((OSAActiveProcPtr) &osadefaultactiveproc) --- 983,987 ---- //Code change by Timothy Paustian Friday, July 21, 2000 10:52:57 PM //I think I can get away with this because only frontier code calls it. ! #if 0//!TARGET_RT_MAC_CFM #define osadefaultactiveUPP ((OSAActiveProcPtr) &osadefaultactiveproc) *************** *** 1111,1115 **** (**hcg).storagetable = storagetable; ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM (**hcg).activeproc = NewOSAActiveUPP(osadefaultactiveproc); --- 1111,1115 ---- (**hcg).storagetable = storagetable; ! #if TARGET_API_MAC_CARBON (**hcg).activeproc = NewOSAActiveUPP(osadefaultactiveproc); *************** *** 1478,1482 **** //Code change by Timothy Paustian Friday, June 16, 2000 1:38:13 PM //Changed to Opaque call for Carbon ! #if !TARGET_RT_MAC_CFM #define coerceTEXTtoSTXTUPP ((AECoercionHandlerUPP) &coerceTEXTtoSTXT) --- 1478,1482 ---- //Code change by Timothy Paustian Friday, June 16, 2000 1:38:13 PM //Changed to Opaque call for Carbon ! #if 0//!TARGET_RT_MAC_CFM #define coerceTEXTtoSTXTUPP ((AECoercionHandlerUPP) &coerceTEXTtoSTXT) *************** *** 1559,1563 **** if (++osacoercionhandlerinstalled == 1) { ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM if(coerceTEXTtoSTXTUPP == nil) coerceTEXTtoSTXTUPP = NewAECoerceDescUPP(coerceTEXTtoSTXT); --- 1559,1563 ---- if (++osacoercionhandlerinstalled == 1) { ! #if TARGET_API_MAC_CARBON if(coerceTEXTtoSTXTUPP == nil) coerceTEXTtoSTXTUPP = NewAECoerceDescUPP(coerceTEXTtoSTXT); *************** *** 1611,1615 **** //Code change by Timothy Paustian Friday, July 21, 2000 11:02:21 PM //added dispose of coercion handler ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM if(coerceTEXTtoSTXTUPP != nil) { --- 1611,1615 ---- //Code change by Timothy Paustian Friday, July 21, 2000 11:02:21 PM //added dispose of coercion handler ! #if TARGET_API_MAC_CARBON if(coerceTEXTtoSTXTUPP != nil) { *************** *** 3643,3647 **** ! #if !TARGET_RT_MAC_CFM #define coerceInsltoTEXTUPP ((AECoercionHandlerUPP) &coerceInsltoTEXT) --- 3643,3647 ---- ! #if 0//!TARGET_RT_MAC_CFM #define coerceInsltoTEXTUPP ((AECoercionHandlerUPP) &coerceInsltoTEXT) *************** *** 3959,3963 **** osapushfastcontext (hcg); ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM coerceInsltoTEXTDesc = NewAECoerceDescUPP(coerceInsltoTEXT); AEInstallCoercionHandler (typeInsertionLoc, typeObjectSpecifier, coerceInsltoTEXTDesc, 0, true, false); --- 3959,3963 ---- osapushfastcontext (hcg); ! #if TARGET_API_MAC_CARBON coerceInsltoTEXTDesc = NewAECoerceDescUPP(coerceInsltoTEXT); AEInstallCoercionHandler (typeInsertionLoc, typeObjectSpecifier, coerceInsltoTEXTDesc, 0, true, false); *************** *** 4198,4202 **** //Code change by Timothy Paustian Friday, July 21, 2000 11:03:49 PM //Get rid of the UPP wer are done. ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM AERemoveCoercionHandler (typeInsertionLoc, typeChar, coerceInsltoTEXTDesc, false); DisposeAECoerceDescUPP(coerceInsltoTEXTDesc); --- 4198,4202 ---- //Code change by Timothy Paustian Friday, July 21, 2000 11:03:49 PM //Get rid of the UPP wer are done. ! #if TARGET_API_MAC_CARBON AERemoveCoercionHandler (typeInsertionLoc, typeChar, coerceInsltoTEXTDesc, false); DisposeAECoerceDescUPP(coerceInsltoTEXTDesc); *************** *** 4214,4218 **** //Code change by Timothy Paustian Monday, June 26, 2000 9:37:56 PM // ! #if !TARGET_RT_MAC_CFM #define handlerecordableeventUPP handlerecordableevent --- 4214,4218 ---- //Code change by Timothy Paustian Monday, June 26, 2000 9:37:56 PM // ! #if 0//!TARGET_RT_MAC_CFM #define handlerecordableeventUPP handlerecordableevent *************** *** 4279,4283 **** //Code change by Timothy Paustian Friday, July 28, 2000 2:40:45 PM //we need to create the UPP now that we want to use it. ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM if (handlerecordableeventDesc == nil) handlerecordableeventDesc = NewAEEventHandlerUPP(handlerecordableevent); --- 4279,4283 ---- //Code change by Timothy Paustian Friday, July 28, 2000 2:40:45 PM //we need to create the UPP now that we want to use it. ! #if TARGET_API_MAC_CARBON if (handlerecordableeventDesc == nil) handlerecordableeventDesc = NewAEEventHandlerUPP(handlerecordableevent); *************** *** 4339,4343 **** //Code change by Timothy Paustian Friday, July 28, 2000 2:43:14 PM //I am assuming the osaStopRecording is called every time osaStartRecording is called. ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM DisposeAEEventHandlerUPP(handlerecordableeventDesc); handlerecordableeventDesc = nil; --- 4339,4343 ---- //Code change by Timothy Paustian Friday, July 28, 2000 2:43:14 PM //I am assuming the osaStopRecording is called every time osaStartRecording is called. ! #if TARGET_API_MAC_CARBON DisposeAEEventHandlerUPP(handlerecordableeventDesc); handlerecordableeventDesc = nil; *************** *** 5117,5121 **** case kComponentCloseSelect: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM result = CallComponentFunctionWithStorage (storage, params, (**theGlobals).cmpcloseUPP); #else --- 5117,5121 ---- case kComponentCloseSelect: ! #if TARGET_API_MAC_CARBON result = CallComponentFunctionWithStorage (storage, params, (**theGlobals).cmpcloseUPP); #else *************** *** 5125,5129 **** case kComponentCanDoSelect: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM result = CallComponentFunction (params, (**theGlobals).cmpcandoUPP); #else --- 5125,5129 ---- case kComponentCanDoSelect: ! #if TARGET_API_MAC_CARBON result = CallComponentFunction (params, (**theGlobals).cmpcandoUPP); #else *************** *** 5133,5137 **** case kComponentVersionSelect: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM result = CallComponentFunction(params, (**theGlobals).cmpversionUPP); #else --- 5133,5137 ---- case kComponentVersionSelect: ! #if TARGET_API_MAC_CARBON result = CallComponentFunction(params, (**theGlobals).cmpversionUPP); #else *************** *** 5152,5156 **** case kOSASelectLoad: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaLoadUPP; #else --- 5152,5156 ---- case kOSASelectLoad: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaLoadUPP; #else *************** *** 5160,5164 **** case kOSASelectStore: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaStoreUPP; #else --- 5160,5164 ---- case kOSASelectStore: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaStoreUPP; #else *************** *** 5168,5172 **** case kOSASelectExecute: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaExecuteUPP; #else --- 5168,5172 ---- case kOSASelectExecute: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaExecuteUPP; #else *************** *** 5176,5180 **** case kOSASelectDisplay: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaDisplayUPP; #else --- 5176,5180 ---- case kOSASelectDisplay: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaDisplayUPP; #else *************** *** 5184,5188 **** case kOSASelectScriptError: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaScriptErrorUPP; #else --- 5184,5188 ---- case kOSASelectScriptError: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaScriptErrorUPP; #else *************** *** 5192,5196 **** case kOSASelectDispose: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaDisposeUPP; #else --- 5192,5196 ---- case kOSASelectDispose: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaDisposeUPP; #else *************** *** 5200,5204 **** case kOSASelectSetScriptInfo: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaSetScriptInfoUPP; #else --- 5200,5204 ---- case kOSASelectSetScriptInfo: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaSetScriptInfoUPP; #else *************** *** 5208,5212 **** case kOSASelectGetScriptInfo: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaGetScriptInfoUPP; #else --- 5208,5212 ---- case kOSASelectGetScriptInfo: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaGetScriptInfoUPP; #else *************** *** 5216,5220 **** case kOSASelectCompile: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaCompileUPP; #else --- 5216,5220 ---- case kOSASelectCompile: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaCompileUPP; #else *************** *** 5224,5228 **** case kOSASelectGetSource: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaGetSourceUPP; #else --- 5224,5228 ---- case kOSASelectGetSource: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaGetSourceUPP; #else *************** *** 5232,5236 **** case kOSASelectCoerceFromDesc: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaCoerceFromDescUPP; #else --- 5232,5236 ---- case kOSASelectCoerceFromDesc: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaCoerceFromDescUPP; #else *************** *** 5240,5244 **** case kOSASelectCoerceToDesc: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaCoerceToDescUPP; #else --- 5240,5244 ---- case kOSASelectCoerceToDesc: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaCoerceToDescUPP; #else *************** *** 5248,5252 **** case kOSASelectStartRecording: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaStartRecordingUPP; #else --- 5248,5252 ---- case kOSASelectStartRecording: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaStartRecordingUPP; #else *************** *** 5256,5260 **** case kOSASelectStopRecording: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaStopRecordingUPP; #else --- 5256,5260 ---- case kOSASelectStopRecording: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaStopRecordingUPP; #else *************** *** 5264,5268 **** case kOSASelectScriptingComponentName: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaScriptingComponentNameUPP; #else --- 5264,5268 ---- case kOSASelectScriptingComponentName: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaScriptingComponentNameUPP; #else *************** *** 5272,5276 **** case kOSASelectLoadExecute: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaLoadExecuteUPP; #else --- 5272,5276 ---- case kOSASelectLoadExecute: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaLoadExecuteUPP; #else *************** *** 5280,5284 **** case kOSASelectCompileExecute: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaCompileExecuteUPP; #else --- 5280,5284 ---- case kOSASelectCompileExecute: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaCompileExecuteUPP; #else *************** *** 5288,5292 **** case kOSASelectDoScript: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaDoScriptUPP; #else --- 5288,5292 ---- case kOSASelectDoScript: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaDoScriptUPP; #else *************** *** 5296,5300 **** case kOSASelectMakeContext: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaMakeContextUPP; #else --- 5296,5300 ---- case kOSASelectMakeContext: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaMakeContextUPP; #else *************** *** 5304,5308 **** case kOSASelectSetResumeDispatchProc: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaSetResumeDispatchProcUPP; #else --- 5304,5308 ---- case kOSASelectSetResumeDispatchProc: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaSetResumeDispatchProcUPP; #else *************** *** 5312,5316 **** case kOSASelectGetResumeDispatchProc: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaGetResumeDispatchProcUPP; #else --- 5312,5316 ---- case kOSASelectGetResumeDispatchProc: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaGetResumeDispatchProcUPP; #else *************** *** 5320,5324 **** case kOSASelectExecuteEvent: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaExecuteEventUPP; #else --- 5320,5324 ---- case kOSASelectExecuteEvent: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaExecuteEventUPP; #else *************** *** 5328,5332 **** case kOSASelectDoEvent: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaDoEventUPP; #else --- 5328,5332 ---- case kOSASelectDoEvent: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaDoEventUPP; #else *************** *** 5336,5340 **** case kOSASelectSetActiveProc: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaSetActiveProcUPP; #else --- 5336,5340 ---- case kOSASelectSetActiveProc: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaSetActiveProcUPP; #else *************** *** 5344,5348 **** case kOSASelectSetDebugProc: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaSetDebugProcUPP; #else --- 5344,5348 ---- case kOSASelectSetDebugProc: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaSetDebugProcUPP; #else *************** *** 5352,5356 **** case kOSASelectDebug: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaDebugUPP; #else --- 5352,5356 ---- case kOSASelectDebug: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaDebugUPP; #else *************** *** 5360,5364 **** case kOSASelectSetSendProc: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaSetSendProcUPP; #else --- 5360,5364 ---- case kOSASelectSetSendProc: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaSetSendProcUPP; #else *************** *** 5368,5372 **** case kOSASelectGetSendProc: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaGetSendProcUPP; #else --- 5368,5372 ---- case kOSASelectGetSendProc: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaGetSendProcUPP; #else *************** *** 5376,5380 **** case kOSASelectSetCreateProc: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaSetCreateProcUPP; #else --- 5376,5380 ---- case kOSASelectSetCreateProc: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaSetCreateProcUPP; #else *************** *** 5384,5388 **** case kOSASelectGetCreateProc: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaGetCreateProcUPP; #else --- 5384,5388 ---- case kOSASelectGetCreateProc: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaGetCreateProcUPP; #else *************** *** 5394,5398 **** case kOSASelectSetDefaultTarget: ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM func = (**theGlobals).osaSetDefaultTargetUPP; #else --- 5394,5398 ---- case kOSASelectSetDefaultTarget: ! #if TARGET_API_MAC_CARBON func = (**theGlobals).osaSetDefaultTargetUPP; #else *************** *** 6173,6177 **** //Code change by Timothy Paustian Friday, July 21, 2000 11:18:39 PM //create all the osa UPPs ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM osaclientactiveDesc = NewOSAActiveUPP(osaclientactive); --- 6173,6177 ---- //Code change by Timothy Paustian Friday, July 21, 2000 11:18:39 PM //create all the osa UPPs ! #if TARGET_API_MAC_CARBON osaclientactiveDesc = NewOSAActiveUPP(osaclientactive); *************** *** 6460,6464 **** AERemoveCoercionHandler (typeType, typeObjectSpecifier, coerceTypetoObjUPP, true); ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM DisposeAECoerceDescUPP(coerceTypetoObjDesc); --- 6460,6464 ---- AERemoveCoercionHandler (typeType, typeObjectSpecifier, coerceTypetoObjUPP, true); ! #if TARGET_API_MAC_CARBON DisposeAECoerceDescUPP(coerceTypetoObjDesc); *************** *** 6515,6519 **** RegisterComponentResourceFile (filegetapplicationrnum (), true); /*2.1b4*/ ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM coerceTypetoObjDesc = NewAECoerceDescUPP(coerceTypetoObj); #endif --- 6515,6519 ---- RegisterComponentResourceFile (filegetapplicationrnum (), true); /*2.1b4*/ ! #if TARGET_API_MAC_CARBON coerceTypetoObjDesc = NewAECoerceDescUPP(coerceTypetoObj); #endif |
|
From: Andre R. <and...@us...> - 2004-10-26 21:53:28
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10610/Frontier/Common/source Modified Files: launch.c Log Message: In getapplicationfilespec, added a new Carbon/Mach-O implementation for obtaining a filespec to our application bundle, i.e. the Frontier.app "folder". Index: launch.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/launch.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** launch.c 23 Oct 2004 22:34:30 -0000 1.3 --- launch.c 26 Oct 2004 21:53:17 -0000 1.4 *************** *** 1933,1938 **** --- 1933,1945 ---- 5.0.2b21 dmb: clear unused fields on Win + 2000-06-09 Timothy Paustian: Changed because using SysEnvisons + and SysEnvRec is like Really old style. This was changed to Gestalt calls + with two new globals see mac.c initmacintosh. + 2002-11-14 AR: Switch from using globals to a local struct for providing context to the getprocesspathvisit callback routine + + 2004-10-26 aradke: New Carbon/Mach-O implementation for obtaining + a filespec to our application bundle, i.e. the Frontier.app "folder". */ *************** *** 1940,1946 **** typrocessvisitinfo info; boolean flsystem7; - //Code change by Timothy Paustian Friday, June 9, 2000 2:36:02 PM - //Changed because using SysEnvisons and SysEnvRec is like Really old style - //This was changed to Gestalt calls with two new globals see mac.c initmacintosh flsystem7 = (gSystemVersion >= 0x0700); --- 1947,1950 ---- *************** *** 1951,1971 **** if (bsprogram == nil) { /*get path to this process*/ ! ProcessInfoRec processinfo; ! ProcessSerialNumber psn; ! ! processinfo.processInfoLength = sizeof (processinfo); ! ! processinfo.processName = nil; /*place to store process name*/ ! ! processinfo.processAppSpec = fs; /*place to store process filespec*/ ! ! psn.highLongOfPSN = 0; ! ! psn.lowLongOfPSN = kCurrentProcess; ! ! if (GetProcessInformation (&psn, &processinfo) != noErr) ! return (false); ! ! return (true); } --- 1955,2004 ---- if (bsprogram == nil) { /*get path to this process*/ ! #if TARGET_RT_MAC_MACHO ! CFBundleRef mybundleref; ! CFURLRef myurlref; ! FSRef myfsref; ! boolean res; ! OSErr err; ! ! mybundleref = CFBundleGetMainBundle(); ! ! if (mybundleref == NULL) ! return (false); ! ! myurlref = CFBundleCopyBundleURL(mybundleref); ! ! if (myurlref == NULL) ! return (false); ! ! res = CFURLGetFSRef(myurlref, &myfsref); ! ! CFRelease(myurlref); ! ! if (!res) ! return (false); ! ! err = FSGetCatalogInfo(&myfsref, kFSCatInfoNone, NULL, NULL, fs, NULL); ! ! return (err == noErr); ! #else ! ProcessInfoRec processinfo; ! ProcessSerialNumber psn; ! ! processinfo.processInfoLength = sizeof (processinfo); ! ! processinfo.processName = nil; /*place to store process name*/ ! ! processinfo.processAppSpec = fs; /*place to store process filespec*/ ! ! psn.highLongOfPSN = 0; ! ! psn.lowLongOfPSN = kCurrentProcess; ! ! if (GetProcessInformation (&psn, &processinfo) != noErr) ! return (false); ! ! return (true); ! #endif } |
|
From: Andre R. <and...@us...> - 2004-10-26 21:50:31
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9929/Frontier/Common/source Modified Files: filepath.c Log Message: In the Mac version of setfsfile, commented out some code for dealing with directories. It is not clear that the code does what the original author thought it should do, and since no caller ever seems to have passed in a directory anyway, this may not have been a problem until now. However, for the Carbon/Mach-O version, shellopendefaultfile passes in the spec for our app bundle to obtain the location of Frontier.root, but the now-disabled code did not return the proper result. Index: filepath.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/filepath.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** filepath.c 23 Oct 2004 22:19:09 -0000 1.2 --- filepath.c 26 Oct 2004 21:50:10 -0000 1.3 *************** *** 310,317 **** boolean setfsfile (tyfilespec *fs, bigstring bsfile) { #ifdef MACVERSION CInfoPBRec pb; ! if (getmacfileinfo (fs, &pb) && foldertest (&pb)) { --- 310,331 ---- boolean setfsfile (tyfilespec *fs, bigstring bsfile) { + + /* + 2004-10-26 aradke: Since the getmacfileinfo/foldertest gymnastics do not + seem to fit any particular purpose and since none of our callers + seem to rely it since they usually pass in a file rather than a directory, + I commented it out. + + The only time we get called with a directory is apparently by + shellopendefaultfile on startup in the Carbon/Mach-O build. + getapplicationfilespec returns a directory in that case and + the code below somehow screwed up when called to set the + filename to Frontier.root so that it wouldn't be found. + */ #ifdef MACVERSION + /* CInfoPBRec pb; ! if (getmacfileinfo (fs, &pb) && foldertest (&pb)) { *************** *** 320,323 **** --- 334,338 ---- return (false); } + */ copystring (bsfile, (*fs).name); |
|
From: Andre R. <and...@us...> - 2004-10-26 11:52:10
|
Update of /cvsroot/frontierkernel/Frontier/build_XCode/Frontier.xcode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23587/Frontier/build_Xcode/Frontier.xcode Modified Files: project.pbxproj Log Message: Add -malign-mac68k to OTHER_CFLAGS in project settings. Mac68k struct alignment is currently required by our database code since sometimes we read a block of data from disk directly into a struct. Index: project.pbxproj =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/build_XCode/Frontier.xcode/project.pbxproj,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** project.pbxproj 26 Oct 2004 10:48:48 -0000 1.4 --- project.pbxproj 26 Oct 2004 11:51:55 -0000 1.5 *************** *** 629,633 **** GCC_WARN_UNUSED_VARIABLE = NO; LIBRARY_SEARCH_PATHS = "\"/Volumes/Data/Development/Frontier Open Source Release/cvsroot/Frontier/Common/Paige\""; ! OTHER_CFLAGS = "-fno-inline"; OTHER_LDFLAGS = "-multiply_defined warning"; OTHER_REZFLAGS = "-d TARGET_API_MAC_CARBON=1 -i ../Common/headers"; --- 629,633 ---- GCC_WARN_UNUSED_VARIABLE = NO; LIBRARY_SEARCH_PATHS = "\"/Volumes/Data/Development/Frontier Open Source Release/cvsroot/Frontier/Common/Paige\""; ! OTHER_CFLAGS = "-fno-inline -malign-mac68k "; OTHER_LDFLAGS = "-multiply_defined warning"; OTHER_REZFLAGS = "-d TARGET_API_MAC_CARBON=1 -i ../Common/headers"; |
|
From: Andre R. <and...@us...> - 2004-10-26 10:48:58
|
Update of /cvsroot/frontierkernel/Frontier/build_XCode/Frontier.xcode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7563/Frontier/build_Xcode/Frontier.xcode Modified Files: project.pbxproj Log Message: Added frontier.r and frontierdefs.h. Index: project.pbxproj =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/build_XCode/Frontier.xcode/project.pbxproj,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** project.pbxproj 25 Oct 2004 23:13:48 -0000 1.3 --- project.pbxproj 26 Oct 2004 10:48:48 -0000 1.4 *************** *** 273,277 **** 65152919072BFF8800411831, 6515291B072BFF8A00411831, - 6515291D072BFF8B00411831, 6515291F072BFF8D00411831, 65152921072BFFCB00411831, --- 273,276 ---- *************** *** 299,302 **** --- 298,302 ---- 65152951072C001700411831, 65D516AB072CED430097D18E, + 65BBB664072E5643008E2F34, ); isa = PBXHeadersBuildPhase; *************** *** 594,597 **** --- 594,598 ---- 651527AA072BFC6900411831, 651527AB072BFC6900411831, + 65BBB662072E563B008E2F34, ); isa = PBXRezBuildPhase; *************** *** 5007,5011 **** --- 5008,5014 ---- 651527B0072BFE0100411831 = { children = ( + 65BBB661072E563B008E2F34, 651527B1072BFE0100411831, + 65BBB663072E5643008E2F34, 651527B3072BFE0300411831, 651527B5072BFE0400411831, *************** *** 5187,5191 **** 65152918072BFF8800411831, 6515291A072BFF8A00411831, - 6515291C072BFF8B00411831, 6515291E072BFF8D00411831, 65152920072BFFCB00411831, --- 5190,5193 ---- *************** *** 7763,7780 **** }; }; - 6515291C072BFF8B00411831 = { - isa = PBXFileReference; - lastKnownFileType = sourcecode.rez; - name = shell.mcp.r; - path = ../Common/headers/shell.mcp.r; - refType = 2; - sourceTree = SOURCE_ROOT; - }; - 6515291D072BFF8B00411831 = { - fileRef = 6515291C072BFF8B00411831; - isa = PBXBuildFile; - settings = { - }; - }; 6515291E072BFF8D00411831 = { isa = PBXFileReference; --- 7765,7768 ---- *************** *** 8141,8144 **** --- 8129,8162 ---- }; }; + 65BBB661072E563B008E2F34 = { + fileEncoding = 30; + isa = PBXFileReference; + lastKnownFileType = sourcecode.rez; + name = frontier.r; + path = ../Common/headers/frontier.r; + refType = 2; + sourceTree = SOURCE_ROOT; + }; + 65BBB662072E563B008E2F34 = { + fileRef = 65BBB661072E563B008E2F34; + isa = PBXBuildFile; + settings = { + }; + }; + 65BBB663072E5643008E2F34 = { + fileEncoding = 30; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + name = frontierdefs.h; + path = ../Common/headers/frontierdefs.h; + refType = 2; + sourceTree = SOURCE_ROOT; + }; + 65BBB664072E5643008E2F34 = { + fileRef = 65BBB663072E5643008E2F34; + isa = PBXBuildFile; + settings = { + }; + }; 65D516AA072CED430097D18E = { fileEncoding = 30; |
|
From: Andre R. <and...@us...> - 2004-10-26 10:27:49
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2496/Frontier/Common/source Modified Files: uisharing.c Log Message: Enable editGlue etc. functions for Mach-O to fix linker errors. Index: uisharing.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/uisharing.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** uisharing.c 23 Oct 2004 23:06:04 -0000 1.2 --- uisharing.c 26 Oct 2004 10:27:39 -0000 1.3 *************** *** 75,79 **** ! #if __powerc enum { --- 75,82 ---- ! /* 2004-10-22 aradke: Not sure if this is the right thing to do for the Mach-O build, ! but at least it makes the link errors for _editGlue etc. go away ! */ ! #if TARGET_RT_MAC_CFM || TARGET_RT_MAC_MACHO enum { *************** *** 85,95 **** extern UniversalProcPtr CallComponentUPP; glue windoweventGlue (ComponentInstance comp, EventRecord *ev, tyWindowSharingGlobals *wsGlobals) { #define windoweventParamSize (sizeof (ev) + sizeof (wsGlobals)) - #ifdef powerc - #pragma options align=mac68k - #endif struct windoweventGluePB { unsigned char componentFlags; --- 88,97 ---- extern UniversalProcPtr CallComponentUPP; + #pragma options align=mac68k + glue windoweventGlue (ComponentInstance comp, EventRecord *ev, tyWindowSharingGlobals *wsGlobals) { #define windoweventParamSize (sizeof (ev) + sizeof (wsGlobals)) struct windoweventGluePB { unsigned char componentFlags; *************** *** 100,106 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct windoweventGluePB pb; --- 102,105 ---- *************** *** 125,131 **** #define windowiscardParamSize (sizeof (w)) - #ifdef powerc - #pragma options align=mac68k - #endif struct windowiscardGluePB { unsigned char componentFlags; --- 124,127 ---- *************** *** 135,141 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct windowiscardGluePB pb; --- 131,134 ---- *************** *** 159,165 **** #define closewindowParamSize (sizeof (w)) - #ifdef powerc - #pragma options align=mac68k - #endif struct closewindowGluePB { unsigned char componentFlags; --- 152,155 ---- *************** *** 169,175 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct closewindowGluePB pb; --- 159,162 ---- *************** *** 195,201 **** #define initsharedmenusParamSize (0L) - #ifdef powerc - #pragma options align=mac68k - #endif struct initsharedmenusGluePB { unsigned char componentFlags; --- 182,185 ---- *************** *** 204,210 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct initsharedmenusGluePB pb; --- 188,191 ---- *************** *** 227,233 **** #define sharedmenuhitParamSize (sizeof (idmenu) + sizeof (iditem) + sizeof (flshareditem)) - #ifdef powerc - #pragma options align=mac68k - #endif struct sharedmenuhitGluePB { unsigned char componentFlags; --- 208,211 ---- *************** *** 239,245 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct sharedmenuhitGluePB pb; --- 217,220 ---- *************** *** 265,271 **** #define sharedscriptrunningParamSize (sizeof (flrunning)) - #ifdef powerc - #pragma options align=mac68k - #endif struct sharedscriptrunningGluePB { unsigned char componentFlags; --- 240,243 ---- *************** *** 275,281 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct sharedscriptrunningGluePB pb; --- 247,250 ---- *************** *** 299,305 **** #define cancelsharedscriptParamSize (0L) - #ifdef powerc - #pragma options align=mac68k - #endif struct cancelsharedscriptGluePB { unsigned char componentFlags; --- 268,271 ---- *************** *** 308,314 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct cancelsharedscriptGluePB pb; --- 274,277 ---- *************** *** 331,337 **** #define checksharedmenusParamSize (sizeof (idinsertafter)) - #ifdef powerc - #pragma options align=mac68k - #endif struct checksharedmenusGluePB { unsigned char componentFlags; --- 294,297 ---- *************** *** 341,347 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct checksharedmenusGluePB pb; --- 301,304 ---- *************** *** 365,371 **** #define disposesharedmenusParamSize (0L) - #ifdef powerc - #pragma options align=mac68k - #endif struct disposesharedmenusGluePB { unsigned char componentFlags; --- 322,325 ---- *************** *** 374,380 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct disposesharedmenusGluePB pb; --- 328,331 ---- *************** *** 397,403 **** #define issharedmenuParamSize (sizeof (idmenu) + sizeof (flsharedmenu)) - #ifdef powerc - #pragma options align=mac68k - #endif struct issharedmenuGluePB { unsigned char componentFlags; --- 348,351 ---- *************** *** 408,414 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct issharedmenuGluePB pb; --- 356,359 ---- *************** *** 433,439 **** #define enablesharedmenusParamSize (sizeof (flenable)) - #ifdef powerc - #pragma options align=mac68k - #endif struct enablesharedmenusGluePB { unsigned char componentFlags; --- 378,381 ---- *************** *** 443,449 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct enablesharedmenusGluePB pb; --- 385,388 ---- *************** *** 467,473 **** #define runsharedmenuitemParamSize (sizeof (idmenu) + sizeof (iditem)) - #ifdef powerc - #pragma options align=mac68k - #endif struct runsharedmenuitemGluePB { unsigned char componentFlags; --- 406,409 ---- *************** *** 478,484 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct runsharedmenuitemGluePB pb; --- 414,417 ---- *************** *** 503,509 **** #define setscripterrorcallbackParamSize (sizeof (scripterrorproc)) - #ifdef powerc - #pragma options align=mac68k - #endif struct setscripterrorcallbackGluePB { unsigned char componentFlags; --- 436,439 ---- *************** *** 513,519 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct setscripterrorcallbackGluePB pb; --- 443,446 ---- *************** *** 537,543 **** #define stubstartParamSize (0L) - #ifdef powerc - #pragma options align=mac68k - #endif struct stubstartGluePB { unsigned char componentFlags; --- 464,467 ---- *************** *** 546,552 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct stubstartGluePB pb; --- 470,473 ---- *************** *** 571,577 **** #define runhandleParamSize (sizeof (h) + sizeof (flscriptedcard) + sizeof (windowname) + sizeof (pt) + sizeof (filter)) - #ifdef powerc - #pragma options align=mac68k - #endif struct runhandleGluePB { unsigned char componentFlags; --- 492,495 ---- *************** *** 585,591 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct runhandleGluePB pb; --- 503,506 ---- *************** *** 613,619 **** #define runmodalhandleParamSize (sizeof (h) + sizeof (flscriptedcard) + sizeof (windowname) + sizeof (pt) + sizeof (filter)) - #ifdef powerc - #pragma options align=mac68k - #endif struct runmodalhandleGluePB { unsigned char componentFlags; --- 528,531 ---- *************** *** 627,633 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct runmodalhandleGluePB pb; --- 539,542 ---- *************** *** 655,661 **** #define setobjectvalueParamSize (sizeof (hcard) + sizeof (name) + sizeof (value)) - #ifdef powerc - #pragma options align=mac68k - #endif struct setobjectvalueGluePB { unsigned char componentFlags; --- 564,567 ---- *************** *** 667,673 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct setobjectvalueGluePB pb; --- 573,576 ---- *************** *** 693,699 **** #define getobjectvalueParamSize (sizeof (hcard) + sizeof (name) + sizeof (value)) - #ifdef powerc - #pragma options align=mac68k - #endif struct getobjectvalueGluePB { unsigned char componentFlags; --- 596,599 ---- *************** *** 705,711 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct getobjectvalueGluePB pb; --- 605,608 ---- *************** *** 731,737 **** #define getobjecthandleParamSize (sizeof (hcard) + sizeof (name) + sizeof (h)) - #ifdef powerc - #pragma options align=mac68k - #endif struct getobjecthandleGluePB { unsigned char componentFlags; --- 628,631 ---- *************** *** 743,749 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct getobjecthandleGluePB pb; --- 637,640 ---- *************** *** 769,775 **** #define recalcParamSize (sizeof (h)) - #ifdef powerc - #pragma options align=mac68k - #endif struct recalcGluePB { unsigned char componentFlags; --- 660,663 ---- *************** *** 779,785 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct recalcGluePB pb; --- 667,670 ---- *************** *** 803,809 **** #define editParamSize (sizeof (editcommand)) - #ifdef powerc - #pragma options align=mac68k - #endif struct editGluePB { unsigned char componentFlags; --- 688,691 ---- *************** *** 813,819 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct editGluePB pb; --- 695,698 ---- *************** *** 837,843 **** #define updateParamSize (sizeof (h)) - #ifdef powerc - #pragma options align=mac68k - #endif struct updateGluePB { unsigned char componentFlags; --- 716,719 ---- *************** *** 847,853 **** ComponentInstance comp; }; - #ifdef powerc - #pragma options align=reset - #endif struct updateGluePB pb; --- 723,726 ---- *************** *** 866,869 **** --- 739,744 ---- } /*updateGlue*/ + #pragma options align=reset + #elif 0 // defined (THINK_C) |
|
From: Andre R. <and...@us...> - 2004-10-26 10:25:10
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1671/Frontier/Common/source Modified Files: ops.c Log Message: Enable safex80told and safeldtox80 conversion helper functions for Xcode/GCC. Index: ops.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/ops.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ops.c 23 Oct 2004 22:43:50 -0000 1.2 --- ops.c 26 Oct 2004 10:24:57 -0000 1.3 *************** *** 800,804 **** } /*listunlink*/ ! #if __powerc typedef struct { --- 800,804 ---- } /*listunlink*/ ! #if __powerc || __GNUC__ typedef struct { |
|
From: Andre R. <and...@us...> - 2004-10-26 10:23:19
|
Update of /cvsroot/frontierkernel/Frontier/Common/windoidWDEF In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1318/Frontier/Common/windoidWDEF Modified Files: windoidWDEF.r Log Message: Include new global header file frontier.r to pick up system resource definitions and global Frontier pre-processor defines. Index: windoidWDEF.r =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/windoidWDEF/windoidWDEF.r,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** windoidWDEF.r 9 Oct 2004 06:09:52 -0000 1.1 --- windoidWDEF.r 26 Oct 2004 10:23:10 -0000 1.2 *************** *** 24,27 **** --- 24,31 ---- ******************************************************************************/ + + #include "frontier.r" + + data 'WDEF' (130, preload) { $"600E 0000 5744 4546 0082 0000 0000 0000" /* `...WDEF....... */ |
|
From: Andre R. <and...@us...> - 2004-10-26 10:15:38
|
Update of /cvsroot/frontierkernel/Frontier/resources/Frontier In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32014/Frontier/resources/Frontier Modified Files: icns.r Log Message: Include new global header file frontier.r to pick up system resource definitions and global Frontier pre-processor defines. Index: icns.r =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/resources/Frontier/icns.r,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** icns.r 9 Oct 2004 00:49:04 -0000 1.1 --- icns.r 26 Oct 2004 10:15:29 -0000 1.2 *************** *** 24,27 **** --- 24,31 ---- ******************************************************************************/ + + #include "frontier.r" + + data 'icns' (128) { $"6963 6E73 0000 CEEE 6963 7323 0000 0048" /* icns..Îîics#...H */ |
|
From: Andre R. <and...@us...> - 2004-10-26 10:15:12
|
Update of /cvsroot/frontierkernel/Frontier/resources/Frontier In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31897/Frontier/resources/Frontier Modified Files: BNDL.r Log Message: Include new global header file frontier.r to pick up system resource definitions and global Frontier pre-processor defines. Index: BNDL.r =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/resources/Frontier/BNDL.r,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** BNDL.r 9 Oct 2004 00:47:22 -0000 1.1 --- BNDL.r 26 Oct 2004 10:15:02 -0000 1.2 *************** *** 24,27 **** --- 24,31 ---- ******************************************************************************/ + + #include "frontier.r" + + data 'icl4' (128) { $"0000 0000 0000 0000 0000 0000 0000 0000" /* ................ */ |
|
From: Andre R. <and...@us...> - 2004-10-26 10:14:47
|
Update of /cvsroot/frontierkernel/Frontier/Common/resources/Mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31847/Frontier/Common/resources/Mac Modified Files: sicn.r Log Message: Include new global header file frontier.r to pick up system resource definitions and global Frontier pre-processor defines. Index: sicn.r =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/resources/Mac/sicn.r,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** sicn.r 9 Oct 2004 08:56:24 -0000 1.1 --- sicn.r 26 Oct 2004 10:14:38 -0000 1.2 *************** *** 24,27 **** --- 24,31 ---- ******************************************************************************/ + + #include "frontier.r" + + data 'SICN' (129, purgeable) { $"0000 0000 0000 0000 0000 FF80 7F00 3E00" /* ..........ÿ..>. */ |
|
From: Andre R. <and...@us...> - 2004-10-26 10:14:39
|
Update of /cvsroot/frontierkernel/Frontier/Common/resources/Mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31755/Frontier/Common/resources/Mac Modified Files: SHELL.R Log Message: Include new global header file frontier.r to pick up system resource definitions and global Frontier pre-processor defines. Index: SHELL.R =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/resources/Mac/SHELL.R,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SHELL.R 25 Oct 2004 22:55:24 -0000 1.3 --- SHELL.R 26 Oct 2004 10:14:27 -0000 1.4 *************** *** 26,42 **** #define oldTemp - #ifdef TARGET_API_MAC_CARBON - #include <Carbon/Carbon.r> - #else - #include <MacTypes.r> - #include <AEUserTermTypes.r> - #include <Controls.r> - #include <Dialogs.r> - #include <Icons.r> - #include <Menus.r> - #endif ! #include "config.r" ! #include "versions.h" resource 'MENU' (1, "Apple") { --- 26,32 ---- #define oldTemp ! #include "frontier.r" ! resource 'MENU' (1, "Apple") { |
|
From: Andre R. <and...@us...> - 2004-10-26 10:14:23
|
Update of /cvsroot/frontierkernel/Frontier/Common/resources/Mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31704/Frontier/Common/resources/Mac Modified Files: ppat.r Log Message: Include new global header file frontier.r to pick up system resource definitions and global Frontier pre-processor defines. Index: ppat.r =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/resources/Mac/ppat.r,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ppat.r 9 Oct 2004 08:55:44 -0000 1.1 --- ppat.r 26 Oct 2004 10:14:14 -0000 1.2 *************** *** 24,27 **** --- 24,31 ---- ******************************************************************************/ + + #include "frontier.r" + + data 'ppat' (128) { $"0001 0000 001C 0000 004E 0000 0000 FFFF" /* .........N....ÿÿ */ |
|
From: Andre R. <and...@us...> - 2004-10-26 10:14:14
|
Update of /cvsroot/frontierkernel/Frontier/Common/resources/Mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31646/Frontier/Common/resources/Mac Modified Files: osxdialogs.r Log Message: Include new global header file frontier.r to pick up system resource definitions and global Frontier pre-processor defines. Index: osxdialogs.r =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/resources/Mac/osxdialogs.r,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** osxdialogs.r 9 Oct 2004 08:55:38 -0000 1.1 --- osxdialogs.r 26 Oct 2004 10:13:59 -0000 1.2 *************** *** 24,27 **** --- 24,31 ---- ******************************************************************************/ + + #include "frontier.r" + + data 'DLOG' (518, purgeable) { $"00DE 0014 0159 01D7 0004 0000 0100 0000" /* .Þ...Y.×........ */ |
|
From: Andre R. <and...@us...> - 2004-10-26 10:13:57
|
Update of /cvsroot/frontierkernel/Frontier/Common/resources/Mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31605/Frontier/Common/resources/Mac Modified Files: osacomponent.r Log Message: Include new global header file frontier.r to pick up system resource definitions and global Frontier pre-processor defines. Index: osacomponent.r =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/resources/Mac/osacomponent.r,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** osacomponent.r 25 Oct 2004 22:55:09 -0000 1.3 --- osacomponent.r 26 Oct 2004 10:13:48 -0000 1.4 *************** *** 24,33 **** ******************************************************************************/ ! #ifdef TARGET_API_MAC_CARBON ! #include <Carbon/Carbon.r> ! #else ! #include <MacTypes.r> ! #include <Icons.r> ! #endif #if 0 --- 24,30 ---- ******************************************************************************/ ! ! #include "frontier.r" ! #if 0 |
|
From: Andre R. <and...@us...> - 2004-10-26 10:13:37
|
Update of /cvsroot/frontierkernel/Frontier/Common/resources/Mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31546/Frontier/Common/resources/Mac Modified Files: opicons.r Log Message: Include new global header file frontier.r to pick up system resource definitions and global Frontier pre-processor defines. Index: opicons.r =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/resources/Mac/opicons.r,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** opicons.r 9 Oct 2004 08:55:18 -0000 1.1 --- opicons.r 26 Oct 2004 10:13:28 -0000 1.2 *************** *** 24,27 **** --- 24,31 ---- ******************************************************************************/ + + #include "frontier.r" + + data 'ics8' (477, "can-expand comment icon") { $"0000 00FE FE00 FEFE 0000 0000 0000 0000" /* ...þþ.þþ........ */ |
|
From: Andre R. <and...@us...> - 2004-10-26 10:13:24
|
Update of /cvsroot/frontierkernel/Frontier/Common/resources/Mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31481/Frontier/Common/resources/Mac Modified Files: lang.r Log Message: Include new global header file frontier.r to pick up system resource definitions and global Frontier pre-processor defines. Index: lang.r =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/resources/Mac/lang.r,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** lang.r 25 Oct 2004 22:54:58 -0000 1.3 --- lang.r 26 Oct 2004 10:13:15 -0000 1.4 *************** *** 24,33 **** ******************************************************************************/ ! #ifdef TARGET_API_MAC_CARBON ! #include <Carbon/Carbon.r> ! #else ! #include <MacTypes.r> ! #include <Dialogs.r> ! #endif resource 'STR#' (135, "Directions", purgeable) { --- 24,30 ---- ******************************************************************************/ ! ! #include "frontier.r" ! resource 'STR#' (135, "Directions", purgeable) { |
|
From: Andre R. <and...@us...> - 2004-10-26 10:13:13
|
Update of /cvsroot/frontierkernel/Frontier/Common/resources/Mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31389/Frontier/Common/resources/Mac Modified Files: kernvelverbs.r Log Message: Include new global header file frontier.r to pick up system resource definitions and global Frontier pre-processor defines. Index: kernvelverbs.r =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/resources/Mac/kernvelverbs.r,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** kernvelverbs.r 9 Oct 2004 08:54:39 -0000 1.1 --- kernvelverbs.r 26 Oct 2004 10:13:00 -0000 1.2 *************** *** 24,28 **** ******************************************************************************/ ! #include "shell.mcp.r" #include "kernelverbdefs.h" --- 24,29 ---- ******************************************************************************/ ! ! #include "frontier.r" #include "kernelverbdefs.h" *************** *** 1077,1081 **** }; - #ifdef flregexpverbs resource 'EFP#' (idregexpverbs, "re") { /*2003-04-22 AR: regular expression verbs*/ --- 1078,1081 ---- *************** *** 1098,1100 **** }; - #endif --- 1098,1099 ---- |
|
From: Andre R. <and...@us...> - 2004-10-26 10:12:57
|
Update of /cvsroot/frontierkernel/Frontier/Common/resources/Mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31304/Frontier/Common/resources/Mac Modified Files: iowaruntime.r Log Message: Include new global header file frontier.r to pick up system resource definitions and global Frontier pre-processor defines. Index: iowaruntime.r =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/resources/Mac/iowaruntime.r,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** iowaruntime.r 9 Oct 2004 08:54:27 -0000 1.1 --- iowaruntime.r 26 Oct 2004 10:12:37 -0000 1.2 *************** *** 24,27 **** --- 24,31 ---- ******************************************************************************/ + + #include "frontier.r" + + data 'WIND' (1024, "non-movable modal", purgeable) { $"0136 0191 01C1 02CD 0001 0000 0000 0000" /* .6..Á.Í........ */ |
|
From: Andre R. <and...@us...> - 2004-10-26 10:12:38
|
Update of /cvsroot/frontierkernel/Frontier/Common/resources/Mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31269/Frontier/Common/resources/Mac Modified Files: ioaapp.r Log Message: Include new global header file frontier.r to pick up system resource definitions and global Frontier pre-processor defines. Index: ioaapp.r =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/resources/Mac/ioaapp.r,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ioaapp.r 9 Oct 2004 08:54:07 -0000 1.1 --- ioaapp.r 26 Oct 2004 10:12:24 -0000 1.2 *************** *** 24,27 **** --- 24,31 ---- ******************************************************************************/ + + #include "frontier.r" + + data 'SICN' (519) { $"0000 0000 0000 3FF8 7FFC C006 C006 C006" /* ......?ø.üÀ.À.À. */ |
|
From: Andre R. <and...@us...> - 2004-10-26 10:12:23
|
Update of /cvsroot/frontierkernel/Frontier/Common/resources/Mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31226/Frontier/Common/resources/Mac Modified Files: clut.r Log Message: Include new global header file frontier.r to pick up system resource definitions and global Frontier pre-processor defines. Index: clut.r =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/resources/Mac/clut.r,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** clut.r 9 Oct 2004 08:54:00 -0000 1.1 --- clut.r 26 Oct 2004 10:12:13 -0000 1.2 *************** *** 24,27 **** --- 24,31 ---- ******************************************************************************/ + + #include "frontier.r" + + data 'clut' (128) { $"0000 0000 0000 0003 0001 0000 0000 0000" /* ................ */ |
|
From: Andre R. <and...@us...> - 2004-10-26 10:12:12
|
Update of /cvsroot/frontierkernel/Frontier/Common/resources/Mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31131/Frontier/Common/resources/Mac Modified Files: carb.r Log Message: Include new global header file frontier.r to pick up system resource definitions and global Frontier pre-processor defines. Index: carb.r =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/resources/Mac/carb.r,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** carb.r 9 Oct 2004 08:53:54 -0000 1.1 --- carb.r 26 Oct 2004 10:12:02 -0000 1.2 *************** *** 24,27 **** --- 24,31 ---- ******************************************************************************/ + + #include "frontier.r" + + data 'carb' (0) { $"0000 0000" /* .... */ |
|
From: Andre R. <and...@us...> - 2004-10-26 10:12:02
|
Update of /cvsroot/frontierkernel/Frontier/Common/resources/Mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31082/Frontier/Common/resources/Mac Modified Files: aeut.r Log Message: Include new global header file frontier.r to pick up system resource definitions and global Frontier pre-processor defines. Index: aeut.r =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/resources/Mac/aeut.r,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** aeut.r 25 Oct 2004 22:54:45 -0000 1.2 --- aeut.r 26 Oct 2004 10:11:51 -0000 1.3 *************** *** 24,32 **** ******************************************************************************/ ! #ifdef TARGET_API_MAC_CARBON ! #include <Carbon/Carbon.r> ! #else ! #include <AEUserTermTypes.r> ! #endif resource 'aete' (0, "Frontier Suites") { 0x1, --- 24,31 ---- ******************************************************************************/ ! ! #include "frontier.r" ! ! resource 'aete' (0, "Frontier Suites") { 0x1, |