[Python-checkins] r74846 - in python/branches/py3k: Modules/_localemodule.c

mark.dickinson python-checkins at python.org
Wed Sep 16 22:32:35 CEST 2009


Author: mark.dickinson
Date: Wed Sep 16 22:32:35 2009
New Revision: 74846

Log:
Merged revisions 74843 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r74843 | mark.dickinson | 2009-09-16 21:26:31 +0100 (Wed, 16 Sep 2009) | 4 lines
  
  Remove outdated include; this include was breaking OS X builds using
  non-Apple gcc4.3 and gcc4.4 (because CoreFoundation/CoreFoundation.h
  won't compile under non-Apple gcc).
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Modules/_localemodule.c

Modified: python/branches/py3k/Modules/_localemodule.c
==============================================================================
--- python/branches/py3k/Modules/_localemodule.c	(original)
+++ python/branches/py3k/Modules/_localemodule.c	Wed Sep 16 22:32:35 2009
@@ -32,10 +32,6 @@
 #include <wchar.h>
 #endif
 
-#if defined(__APPLE__)
-#include <CoreFoundation/CoreFoundation.h>
-#endif
-
 #if defined(MS_WINDOWS)
 #define WIN32_LEAN_AND_MEAN
 #include <windows.h>


More information about the Python-checkins mailing list