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

Jack Jansen jackjansen@users.sourceforge.net
Wed, 26 Dec 2001 14:52:44 -0800


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

Modified Files:
      Tag: release22-branch
	macglue.c 
Log Message:
Silly workaround for MacOS 8.1: the UH3.4 CarbonAccessors.o is apparently no longer good enough for 8.1. This is a partial fix that at least makes the core build.

Index: macglue.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Python/macglue.c,v
retrieving revision 1.109
retrieving revision 1.109.4.1
diff -C2 -d -r1.109 -r1.109.4.1
*** macglue.c	2001/12/10 16:08:06	1.109
--- macglue.c	2001/12/26 22:52:41	1.109.4.1
***************
*** 393,396 ****
--- 393,407 ----
  
  #if TARGET_API_MAC_OS8
+ Point
+ LMGetMouse(void)
+ {
+ 	return LMGetMouseLocation();
+ }
+ 
+ long LMGetExpandMem(void)
+ {
+ 	return 0;
+ }
+ 
  void
  c2pstrcpy(unsigned char *dst, const char *src)