[pypy-svn] r75833 - pypy/trunk/pypy/rlib

afa at codespeak.net afa at codespeak.net
Mon Jul 5 15:03:38 CEST 2010


Author: afa
Date: Mon Jul  5 15:03:37 2010
New Revision: 75833

Modified:
   pypy/trunk/pypy/rlib/rlocale.py
Log:
Revert the part of r75825 which was not intended.


Modified: pypy/trunk/pypy/rlib/rlocale.py
==============================================================================
--- pypy/trunk/pypy/rlib/rlocale.py	(original)
+++ pypy/trunk/pypy/rlib/rlocale.py	Mon Jul  5 15:03:37 2010
@@ -13,15 +13,15 @@
         self.message = message
 
 HAVE_LANGINFO = sys.platform != 'win32'
-#HAVE_LIBINTL  = sys.platform != 'win32'
+HAVE_LIBINTL  = sys.platform != 'win32'
 
 class CConfig:
     includes = ['locale.h', 'limits.h']
 
     if HAVE_LANGINFO:
         includes += ['langinfo.h']
-    #if HAVE_LIBINTL:
-    #    includes += ['libintl.h']
+    if HAVE_LIBINTL:
+        includes += ['libintl.h']
     if sys.platform == 'win32':
         includes += ['windows.h']
     _compilation_info_ = ExternalCompilationInfo(



More information about the Pypy-commit mailing list