[Python-checkins] python/dist/src/Python dynload_mac.c,2.12,2.13

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Mon, 16 Dec 2002 05:16:28 -0800


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1:/tmp/cvs-serv6686

Modified Files:
	dynload_mac.c 
Log Message:
Got rid of old (non-carbon-ppc and even cfm68k) file extensions for
extension modules.


Index: dynload_mac.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/dynload_mac.c,v
retrieving revision 2.12
retrieving revision 2.13
diff -C2 -d -r2.12 -r2.13
*** dynload_mac.c	28 Nov 2001 20:40:47 -0000	2.12
--- dynload_mac.c	16 Dec 2002 13:16:25 -0000	2.13
***************
*** 18,30 ****
  const struct filedescr _PyImport_DynLoadFiletab[] = {
  	{".slb", "rb", C_EXTENSION},
- #ifdef __CFM68K__
- 	{".CFM68K.slb", "rb", C_EXTENSION},
- #else
- #if TARGET_API_MAC_CARBON
  	{".carbon.slb", "rb", C_EXTENSION},
- #else
- 	{".ppc.slb", "rb", C_EXTENSION},
- #endif
- #endif
  	{0, 0}
  };
--- 18,22 ----