[pypy-svn] r72308 - pypy/trunk/pypy/rpython/module

arigo at codespeak.net arigo at codespeak.net
Wed Mar 17 14:01:40 CET 2010


Author: arigo
Date: Wed Mar 17 14:01:39 2010
New Revision: 72308

Modified:
   pypy/trunk/pypy/rpython/module/ll_time.py
Log:
Revert this, which was pointless.  The real cause of
the inconsistency between CLOCKS_PER_SEC in this test
and in a complete pypy translation is due to including
Python.h.  Argggh.


Modified: pypy/trunk/pypy/rpython/module/ll_time.py
==============================================================================
--- pypy/trunk/pypy/rpython/module/ll_time.py	(original)
+++ pypy/trunk/pypy/rpython/module/ll_time.py	Wed Mar 17 14:01:39 2010
@@ -42,7 +42,7 @@
 
 class CConfigForFTime:
     _compilation_info_ = ExternalCompilationInfo(
-        includes=includes,
+        includes=[TIME_H, 'sys/timeb.h'],
         libraries=libraries
     )
     TIMEB = platform.Struct(STRUCT_TIMEB, [('time', rffi.INT),



More information about the Pypy-commit mailing list