[Python-checkins] CVS: python/dist/src/Mac/Python macglue.c,1.99,1.100

Jack Jansen jackjansen@users.sourceforge.net
Tue, 07 Aug 2001 08:30:10 -0700


Update of /cvsroot/python/python/dist/src/Mac/Python
In directory usw-pr-cvs1:/tmp/cvs-serv15378/python/Mac/Python

Modified Files:
	macglue.c 
Log Message:
Got rid of 68k-Mac and other outdated ifdefs.

Index: macglue.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Python/macglue.c,v
retrieving revision 1.99
retrieving revision 1.100
diff -C2 -d -r1.99 -r1.100
*** macglue.c	2001/08/03 15:39:27	1.99
--- macglue.c	2001/08/07 15:30:07	1.100
***************
*** 47,63 ****
  #include <TextUtils.h>
  #include <LowMem.h>
- #ifdef __CFM68K__
- /* cfm68k InterfaceLib exports GetEventQueue, but Events.h doesn't know this
- ** and defines it as GetEvQHdr (which is correct for PPC). This fix is for
- ** CW9, check that the workaround is still needed for the next release.
- */
- #define GetEvQHdr GetEventQueue
- #endif /* __CFM68K__ */
- 
  #include <Events.h>
- 
- #ifdef __CFM68K__
- #undef GetEventQueue
- #endif /* __CFM68K__ */
  #else
  #include <Carbon/Carbon.h>
--- 47,51 ----
***************
*** 100,108 ****
  */
  #ifndef MINIMUM_STACK_SIZE
- #ifdef __powerc
  #define MINIMUM_STACK_SIZE 8192
- #else
- #define MINIMUM_STACK_SIZE 4096
- #endif
  #endif
  
--- 88,92 ----