Author: Amaury Forgeot d'Arc <amaur...@gmail.com>
Branch: 
Changeset: r74511:c611645f2e73
Date: 2014-11-13 22:36 +0100
http://bitbucket.org/pypy/pypy/changeset/c611645f2e73/

Log:    Don't know whether these modules actually work on sunos5, but the
        excuse 'depends on ctypes' does not stand anymore.

diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -64,13 +64,9 @@
     default_modules.add("_locale")
 
 if sys.platform == "sunos5":
-    working_modules.remove('mmap')   # depend on ctypes, can't get at c-level 
'errono'
-    working_modules.remove('time')   # depend on ctypes, missing 
tm_zone/tm_gmtoff
-    working_modules.remove('signal') # depend on ctypes, can't get at c-level 
'errono'
     working_modules.remove('fcntl')  # LOCK_NB not defined
     working_modules.remove("_minimal_curses")
     working_modules.remove("termios")
-    working_modules.remove("_multiprocessing")   # depends on time
     if "cppyy" in working_modules:
         working_modules.remove("cppyy")  # depends on ctypes
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to