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-24 19:16:47
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25688/Frontier/Common/source Modified Files: opbuttons.c Log Message: In opbuttonsattach, create new list in local hdllistrecord and assign to buttonlist field of windowinfo handle to make Xcode/GCC happy. Index: opbuttons.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/opbuttons.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** opbuttons.c 23 Oct 2004 22:39:03 -0000 1.2 --- opbuttons.c 24 Oct 2004 19:16:36 -0000 1.3 *************** *** 47,50 **** --- 47,51 ---- hdlhashnode hn; short ct = 0; + hdllistrecord hlist; (**hinfo).flhidebuttons = false; *************** *** 52,57 **** (**hinfo).flsyntheticbuttons = true; ! opnewlist (&(hdllistrecord) (**hinfo).buttonlist, false); ! /*loop through all of the items in the table*/ --- 53,60 ---- (**hinfo).flsyntheticbuttons = true; ! opnewlist (&hlist, false); ! ! (**hinfo).buttonlist = (Handle) hlist; ! /*loop through all of the items in the table*/ |
|
From: Andre R. <and...@us...> - 2004-10-24 18:00:19
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5347/Frontier/Common/source Modified Files: about.c Log Message: Use hdlprocessthread in aboutsetthreadstring argument list to make Xcode/GCC happy. Index: about.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/about.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** about.c 23 Oct 2004 22:11:06 -0000 1.2 --- about.c 24 Oct 2004 18:00:04 -0000 1.3 *************** *** 830,836 **** ! boolean aboutsetthreadstring (hdlthreadglobals hg, boolean flin) { register hdlcancoonrecord hc = cancoonglobals; boolean fl = false; hdlwindowinfo hinfo; --- 830,837 ---- ! boolean aboutsetthreadstring (hdlprocessthread hp, boolean flin) { register hdlcancoonrecord hc = cancoonglobals; + hdlthreadglobals hg = (hdlthreadglobals) hp; boolean fl = false; hdlwindowinfo hinfo; |
|
From: Andre R. <and...@us...> - 2004-10-24 17:58:24
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4923/Frontier/Common/headers Modified Files: about.h Log Message: Include process.h and use hdlprocessthread in declaration of aboutsetthreadstring to make Xcode/GCC happy. Index: about.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/about.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** about.h 9 Oct 2004 20:50:43 -0000 1.1 --- about.h 24 Oct 2004 17:58:16 -0000 1.2 *************** *** 24,29 **** --- 24,34 ---- ******************************************************************************/ + #ifndef aboutinclude #define aboutinclude + #ifndef processinclude + #include "process.h" + #endif + /*prototypes*/ *************** *** 41,47 **** extern boolean aboutsetmiscstring (bigstring); ! extern boolean aboutsetthreadstring (struct tythreadglobals **, boolean); boolean aboutstatsshowing (void); void aboutsetstatsflag (boolean fl); --- 46,54 ---- extern boolean aboutsetmiscstring (bigstring); ! extern boolean aboutsetthreadstring (hdlprocessthread, boolean); boolean aboutstatsshowing (void); void aboutsetstatsflag (boolean fl); + + #endif /*aboutinclude*/ |
|
From: Andre R. <and...@us...> - 2004-10-24 17:12:32
|
Update of /cvsroot/frontierkernel/Frontier/Common/SystemHeaders In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26455/Frontier/Common/SystemHeaders Modified Files: standard.h Log Message: Switch argument in typedef of callback function pointer from ... to void. Index: standard.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/SystemHeaders/standard.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** standard.h 24 Oct 2004 12:29:31 -0000 1.3 --- standard.h 24 Oct 2004 17:12:23 -0000 1.4 *************** *** 266,276 **** typedef Rect *ptrrect; ! #ifdef MACVERSION ! typedef boolean (*callback) (...); ! #endif ! ! #ifdef WIN95VERSION ! typedef boolean (*callback) (void); ! #endif typedef unsigned char byte, *ptrbyte; --- 266,270 ---- typedef Rect *ptrrect; ! typedef boolean (*callback) (void); /* 2004-10-24 aradke: was ... instead of void on Mac */ typedef unsigned char byte, *ptrbyte; |
|
From: Andre R. <and...@us...> - 2004-10-24 17:11:05
|
Update of /cvsroot/frontierkernel/Frontier/Common/SystemHeaders In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26034/Frontier/Common/SystemHeaders Modified Files: land.h Log Message: Switch typedef of landqueuepopcallback funtion pointer to use explicit argument list. Index: land.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/SystemHeaders/land.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** land.h 9 Oct 2004 06:17:25 -0000 1.1 --- land.h 24 Oct 2004 17:10:56 -0000 1.2 *************** *** 84,88 **** typedef pascal OSErr (*landfilespeccallback) (FSSpec *); ! typedef pascal boolean (*landqueuepopcallback) (...); typedef pascal OSErr (*tyeventcreatecallback)(AEEventClass theAEEventClass, AEEventID theAEEventID, const AEAddressDesc *target, short returnID, long transactionID, AppleEvent *result); --- 84,88 ---- typedef pascal OSErr (*landfilespeccallback) (FSSpec *); ! typedef pascal boolean (*landqueuepopcallback) (Handle, long); /* 2004-10-24 aradke: param list was ... */ typedef pascal OSErr (*tyeventcreatecallback)(AEEventClass theAEEventClass, AEEventID theAEEventID, const AEAddressDesc *target, short returnID, long transactionID, AppleEvent *result); |
|
From: Andre R. <and...@us...> - 2004-10-24 16:58:20
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22947/Frontier/Common/headers Modified Files: shellprint.h Log Message: Do not include system headers for printing here since this is now already handled in the global osincludes.h. Index: shellprint.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/shellprint.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** shellprint.h 9 Oct 2004 21:09:22 -0000 1.1 --- shellprint.h 24 Oct 2004 16:58:11 -0000 1.2 *************** *** 27,46 **** - #if MACVERSION - #if TARGET_API_MAC_CARBON == 1 - #include <PMApplication.h> - #include <PMDefinitions.h> - //#include <PMCore.h> - #else - #include <Printing.h> - #endif - - #endif - - #if WIN95VERSION - - #endif - - typedef struct typrintinfo { --- 27,30 ---- |
|
From: Andre R. <and...@us...> - 2004-10-24 16:52:26
|
Update of /cvsroot/frontierkernel/Frontier/Common/UserLandIACToolkit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21449/Frontier/Common/UserLandIACToolkit Modified Files: landsystem7.c Log Message: In call to AEResumeThisEvent, coerce kAENoDispatch constant argument to AEEventHandlerUPP to make Xcode/GCC happy. Index: landsystem7.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/UserLandIACToolkit/landsystem7.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** landsystem7.c 23 Oct 2004 21:31:26 -0000 1.2 --- landsystem7.c 24 Oct 2004 16:52:16 -0000 1.3 *************** *** 843,847 **** (void) landhandleverb (hv); ! AEResumeTheCurrentEvent (&event, &reply, kAENoDispatch, 0); exitprocessthread (); --- 843,847 ---- (void) landhandleverb (hv); ! AEResumeTheCurrentEvent (&event, &reply, (AEEventHandlerUPP) kAENoDispatch, 0); exitprocessthread (); |
|
From: Andre R. <and...@us...> - 2004-10-24 16:16:17
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11471/Frontier/Common/headers Modified Files: dialogs.h Log Message: Switched type of third parameter of setuseritemdrawroutine from callback to dialogcallback. (for Xcode/GCC compatibility) Index: dialogs.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/dialogs.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dialogs.h 9 Oct 2004 20:54:13 -0000 1.1 --- dialogs.h 24 Oct 2004 16:16:09 -0000 1.2 *************** *** 156,160 **** extern boolean ptinuseritem (Point, DialogPtr, short); ! extern boolean setuseritemdrawroutine (DialogPtr, short, callback); extern pascal boolean modaldialogcallback (DialogPtr, EventRecord *, short *); --- 156,160 ---- extern boolean ptinuseritem (Point, DialogPtr, short); ! extern boolean setuseritemdrawroutine (DialogPtr, short, dialogcallback); extern pascal boolean modaldialogcallback (DialogPtr, EventRecord *, short *); |
|
From: Andre R. <and...@us...> - 2004-10-24 16:15:45
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11274/Frontier/Common/source Modified Files: osadroplet.c Log Message: Switched type of third parameter of setuseritemdrawroutine from callback to dialogcallback. (for Xcode/GCC compatibility) Index: osadroplet.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/osadroplet.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** osadroplet.c 23 Oct 2004 22:46:37 -0000 1.2 --- osadroplet.c 24 Oct 2004 16:15:36 -0000 1.3 *************** *** 851,859 **** #endif ! setuseritemdrawroutine (w, iconitem, (callback) &drawiconitem); ! setuseritemdrawroutine (w, titleitem, (callback) &drawtitleitem); ! setuseritemdrawroutine (w, msgitem, (callback) &drawmessageitem); ShowWindow (w); --- 851,859 ---- #endif ! setuseritemdrawroutine (w, iconitem, &drawiconitem); ! setuseritemdrawroutine (w, titleitem, &drawtitleitem); ! setuseritemdrawroutine (w, msgitem, &drawmessageitem); ShowWindow (w); |
|
From: Andre R. <and...@us...> - 2004-10-24 16:14:54
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10992/Frontier/Common/source Modified Files: dialogs.c Log Message: Switched type of third parameter of setuseritemdrawroutine from callback to dialogcallback. (for Xcode/GCC compatibility) Index: dialogs.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/dialogs.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** dialogs.c 23 Oct 2004 22:16:32 -0000 1.2 --- dialogs.c 24 Oct 2004 16:14:45 -0000 1.3 *************** *** 772,776 **** #endif ! boolean setuseritemdrawroutine (DialogPtr pdialog, short item, callback drawroutine) { short itemtype; --- 772,776 ---- #endif ! boolean setuseritemdrawroutine (DialogPtr pdialog, short item, dialogcallback drawroutine) { short itemtype; |
|
From: Andre R. <and...@us...> - 2004-10-24 12:43:57
|
Update of /cvsroot/frontierkernel/Frontier/build_VC6 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22781 Modified Files: Frontier.dsp Log Message: Add frontier.h to project. Index: Frontier.dsp =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/build_VC6/Frontier.dsp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Frontier.dsp 17 Oct 2004 13:11:46 -0000 1.1 --- Frontier.dsp 24 Oct 2004 12:43:49 -0000 1.2 *************** *** 76,79 **** --- 76,80 ---- # ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c # ADD CPP /nologo /Zp2 /MTd /W3 /GX /Zi /Od /Ob2 /I "..\Common\headers" /I "..\Common\SystemHeaders" /I "..\Common\Paige\headers" /I "..\Common\PCRE" /D "_DEBUG" /D FRONTIERCOM=1 /D "WIN95VERSION" /D "_WINDOWS" /D "WIN32" /D "WIN32_COMPILE" /FR /FD /c + # SUBTRACT CPP /YX /Yc /Yu # ADD BASE MTL /nologo /D "_DEBUG" /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 *************** *** 1006,1009 **** --- 1007,1014 ---- # Begin Source File + SOURCE=..\Common\headers\frontier.h + # End Source File + # Begin Source File + SOURCE=..\Common\headers\frontierconfig.h # End Source File |
|
From: Andre R. <and...@us...> - 2004-10-24 12:31:07
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19980 Modified Files: winregistry.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: winregistry.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/winregistry.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** winregistry.c 17 Oct 2004 12:34:40 -0000 1.1 --- winregistry.c 24 Oct 2004 12:30:58 -0000 1.2 *************** *** 24,34 **** ******************************************************************************/ ! #ifdef MACVERSION ! #include <standard.h> ! #endif ! ! #ifdef WIN95VERSION #include "standard.h" - #endif #include "error.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" #include "standard.h" #include "error.h" |
|
From: Andre R. <and...@us...> - 2004-10-24 12:29:39
|
Update of /cvsroot/frontierkernel/Frontier/Common/SystemHeaders In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19548 Modified Files: standard.h Log Message: Merge some definitions from standard.h into frontier.h that are specific to the Win32 build. Index: standard.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/SystemHeaders/standard.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** standard.h 23 Oct 2004 19:23:47 -0000 1.2 --- standard.h 24 Oct 2004 12:29:31 -0000 1.3 *************** *** 31,51 **** #define standardinclude /*so other modules can tell that we've been included*/ - #define PASCALSTRINGVERSION 1 - #define SPEED 1 - #ifdef WIN95VERSION - #ifndef __MWERKS__ - #pragma warning (disable: 4244 4761; error: 4013) - #include "shell.msvs.h" - #endif - #define NEWFILESPECTYPE 1 #include "macconv.h" - #elif defined (MACVERSION) - - #else - #pragma error "must define MACVERSION or WIN95VERSION" #endif - #ifdef PACKFLIPPED #define conditionallongswap(x) dolongswap(x) --- 31,38 ---- |
|
From: Andre R. <and...@us...> - 2004-10-24 12:29:18
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19476 Modified Files: frontier.h Log Message: Merge some definitions from standard.h into frontier.h that are specific to the Win32 build. Index: frontier.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/frontier.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** frontier.h 24 Oct 2004 11:57:06 -0000 1.2 --- frontier.h 24 Oct 2004 12:29:09 -0000 1.3 *************** *** 49,52 **** --- 49,56 ---- #define gray3Dlook 1 #define noextended 1 + #define NEWFILESPECTYPE 1 + #ifndef __MWERKS__ + #pragma warning (disable: 4244 4761; error: 4013) + #endif #endif /* WIN95VERSION */ *************** *** 81,84 **** --- 85,90 ---- #undef lazythis_optimization #undef langexternalfind_optimization + #define PASCALSTRINGVERSION 1 + #define SPEED 1 #ifdef MACVERSION |
|
From: Andre R. <and...@us...> - 2004-10-24 11:57:18
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11831 Modified Files: frontier.h Log Message: Explicitly undefine lazythis_optimization and langexternalfind_optimization for all platforms. Not sure what the status of these optimizations is. Index: frontier.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/frontier.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** frontier.h 23 Oct 2004 18:33:21 -0000 1.1 --- frontier.h 24 Oct 2004 11:57:06 -0000 1.2 *************** *** 44,49 **** #define FRONTIERCOM 1 #define FRONTIERWEB 0 - #undef lazythis_optimization - #undef langexternalfind_optimization #undef winhybrid #define fljustpacking 0 --- 44,47 ---- *************** *** 81,84 **** --- 79,84 ---- #define oplanglists 1 #define flregexpverbs 1 + #undef lazythis_optimization + #undef langexternalfind_optimization #ifdef MACVERSION |
|
From: Andre R. <and...@us...> - 2004-10-23 23:34:09
|
Update of /cvsroot/frontierkernel/Frontier/build_XCode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21266/Frontier/build_Xcode Added Files: FrontierMachO.mcp Log Message: Initial check-in of CodeWarrior 8.3 project for building a Mach-O application package of Frontier. This will be imported into XCode. --- NEW FILE: FrontierMachO.mcp --- (This appears to be a binary file; contents omitted.) |
|
From: Andre R. <and...@us...> - 2004-10-23 23:32:42
|
Update of /cvsroot/frontierkernel/Frontier/build_XCode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20988/Frontier/build_Xcode Added Files: frontier.osxmacho.debug.pch Log Message: Initial check-in of pre-compiled prefix header for Mach-O version. --- NEW FILE: frontier.osxmacho.debug.pch --- /****************************************************************************** UserLand Frontier(tm) -- High performance Web content management, object database, system-level and Internet scripting environment, including source code editing and debugging. Copyright (C) 1992-2004 UserLand Software, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ******************************************************************************/ /* 2004-10-23 aradke: Precompile prefix header for "Frontier OSX Mach-O Debug" */ #pragma precompile_target "frontier.osxmacho.debug.mch" #define DEBUG 1 #define DEBUG_INTERNAL 1 #undef WIN95VERSION #define MACVERSION 1 #define TARGET_API_MAC_OS8 0 /* see ConditionalMacros.h */ #define TARGET_API_MAC_CARBON 1 #define TARGET_API_MAC_OSX 0 #include "frontier.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 23:32:02
|
Update of /cvsroot/frontierkernel/Frontier/build_XCode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20808/Frontier/build_Xcode Added Files: .cvsignore Log Message: Ignore *.mch files (pre-compiled prefix headers for CodeWarrior). --- NEW FILE: .cvsignore --- *.mch |
|
From: Andre R. <and...@us...> - 2004-10-23 23:30:29
|
Update of /cvsroot/frontierkernel/Frontier/build_XCode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20400/build_XCode Log Message: Directory /cvsroot/frontierkernel/Frontier/build_XCode added to the repository |
|
From: Andre R. <and...@us...> - 2004-10-23 23:29:54
|
Update of /cvsroot/frontierkernel/Frontier/Common/Paige In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19761/Frontier/Common/Paige Added Files: libpaigemacho.a Log Message: For Mach-O build of Frontier. --- NEW FILE: libpaigemacho.a --- (This appears to be a binary file; contents omitted.) |
|
From: Andre R. <and...@us...> - 2004-10-23 23:08:06
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14156/Frontier/Common/source Modified Files: zoom.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: zoom.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/zoom.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** zoom.c 9 Oct 2004 08:14:59 -0000 1.1 --- zoom.c 23 Oct 2004 23:07:56 -0000 1.2 *************** *** 24,28 **** ******************************************************************************/ ! #include <standard.h> #include "quickdraw.h" #include "cursor.h" --- 24,30 ---- ******************************************************************************/ ! #include "frontier.h" ! #include "standard.h" ! #include "quickdraw.h" #include "cursor.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 23:07:54
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14112/Frontier/Common/source Modified Files: wpverbs.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: wpverbs.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/wpverbs.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** wpverbs.c 9 Oct 2004 08:14:46 -0000 1.1 --- wpverbs.c 23 Oct 2004 23:07:43 -0000 1.2 *************** *** 24,41 **** ******************************************************************************/ ! #ifdef MACVERSION ! // #pragma syspath_once off ! #endif #include "Paige.h" - #ifdef MACVERSION - #include <standard.h> - #endif - - #ifdef WIN95VERSION - #include "standard.h" - #endif - #include "frontierconfig.h" #include "cursor.h" --- 24,32 ---- ******************************************************************************/ ! #include "frontier.h" ! #include "standard.h" #include "Paige.h" #include "frontierconfig.h" #include "cursor.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 23:07:27
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13911/Frontier/Common/source Modified Files: wpengine.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: wpengine.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/wpengine.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** wpengine.c 9 Oct 2004 08:14:08 -0000 1.1 --- wpengine.c 23 Oct 2004 23:07:16 -0000 1.2 *************** *** 24,30 **** ******************************************************************************/ ! #ifdef MACVERSION ! // #pragma syspath_once off ! #endif #include "Paige.h" --- 24,28 ---- ******************************************************************************/ ! #include "frontier.h" #include "Paige.h" *************** *** 35,48 **** #include "pgHLevel.h" ! #ifdef MACVERSION ! #include <standard.h> ! #include <Script.h> ! #endif ! ! #ifdef WIN95VERSION ! #include "standard.h" ! #endif - #include <ctype.h> #include "bitmaps.h" #include "cursor.h" --- 33,38 ---- #include "pgHLevel.h" ! #include "standard.h" #include "bitmaps.h" #include "cursor.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 23:06:51
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13831/Frontier/Common/source Modified Files: WinSockNetEvents.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: WinSockNetEvents.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/WinSockNetEvents.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** WinSockNetEvents.c 17 Oct 2004 12:34:40 -0000 1.2 --- WinSockNetEvents.c 23 Oct 2004 23:06:40 -0000 1.3 *************** *** 40,43 **** --- 40,49 ---- **************************************************************************/ + + + #include "frontier.h" + #include "standard.h" + + #ifdef NeverDefine_For_Reference For reference I am listing the error codes from the windows winsock.h file here *************** *** 241,246 **** - #include <ctype.h> - #define ACCEPT_CONN_WITHOUT_GLOBALS 1 --- 247,250 ---- *************** *** 252,256 **** #ifdef FRONTIER_GUSI_2 #include <compat.h> - #include <string.h> #include <fcntl.h> #include <inttypes.h> --- 256,259 ---- *************** *** 286,302 **** #include <sys/errno.h> - #include <standard.h> #include "mac.h" #endif - #ifdef WIN95VERSION - #include "standard.h" - #undef abs - // #include <winsock.h> - #include <winsock2.h> - #include <mswsock.h> - #include <malloc.h> - #endif - #include "error.h" #include "file.h" --- 289,295 ---- *************** *** 523,527 **** #if (TCPTRACKER == 3) #pragma message ("*********************** TCPTRACKER is ON: Full output to tcpfile.txt ***********************") - #include <stdio.h> static boolean fllogger = true; --- 516,519 ---- *************** *** 638,643 **** #pragma message ("*********************** TCPTRACKER is ON: Error output to tcpfile.txt **********************") - #include <stdio.h> - static boolean fllogger = true; --- 630,633 ---- |
|
From: Andre R. <and...@us...> - 2004-10-23 23:06:14
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13719/Frontier/Common/source Modified Files: uisharing.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: uisharing.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/uisharing.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** uisharing.c 9 Oct 2004 08:12:24 -0000 1.1 --- uisharing.c 23 Oct 2004 23:06:04 -0000 1.2 *************** *** 24,31 **** ******************************************************************************/ ! #include <AppleEvents.h> ! #include <Components.h> ! #include <Gestalt.h> ! #include <Processes.h> #include <uisharing.h> #include <uisinternal.h> --- 24,30 ---- ******************************************************************************/ ! #include "frontier.h" ! #include "standard.h" ! #include <uisharing.h> #include <uisinternal.h> |