[Python-checkins] python/dist/src/Modules getpath.c,1.48,1.49

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Sat Jun 26 00:03:08 EDT 2004


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31708/Modules

Modified Files:
	getpath.c 
Log Message:
Modules/getpath.c now compiles properly under OS X when using the
--disable-framework build; header file was protected in an #if using the wrong
macro to check.

Closes bug #978645.


Index: getpath.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/getpath.c,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -d -r1.48 -r1.49
*** getpath.c	24 Jun 2004 00:48:44 -0000	1.48
--- getpath.c	26 Jun 2004 04:03:05 -0000	1.49
***************
*** 7,11 ****
  #include <string.h>
  
! #ifdef WITH_NEXT_FRAMEWORK
  #include <mach-o/dyld.h>
  #endif
--- 7,11 ----
  #include <string.h>
  
! #ifdef __APPLE__
  #include <mach-o/dyld.h>
  #endif




More information about the Python-checkins mailing list