[pypy-svn] r50564 - pypy/branch/applevel-ctypes2/pypy/config

arigo at codespeak.net arigo at codespeak.net
Sun Jan 13 18:32:46 CET 2008


Author: arigo
Date: Sun Jan 13 18:32:46 2008
New Revision: 50564

Modified:
   pypy/branch/applevel-ctypes2/pypy/config/pypyoption.py
Log:
The _ffi module needs the interp-level struct module because the
default app-level struct has no support for 'P'.


Modified: pypy/branch/applevel-ctypes2/pypy/config/pypyoption.py
==============================================================================
--- pypy/branch/applevel-ctypes2/pypy/config/pypyoption.py	(original)
+++ pypy/branch/applevel-ctypes2/pypy/config/pypyoption.py	Sun Jan 13 18:32:46 2008
@@ -34,7 +34,8 @@
     del working_modules["crypt"]
 
 
-module_dependencies = { }
+module_dependencies = {'_ffi': [("objspace.usemodules.struct", True)],
+                       }
 if os.name == "posix":
     module_dependencies['rctime'] = [("objspace.usemodules.select", True),]
 



More information about the Pypy-commit mailing list