[pypy-commit] cffi default: We started to add bug fixes to libffi_msvc.

arigo noreply at buildbot.pypy.org
Sun Jul 28 21:18:47 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r1297:5877e7273c75
Date: 2013-07-28 21:18 +0200
http://bitbucket.org/cffi/cffi/changeset/5877e7273c75/

Log:	We started to add bug fixes to libffi_msvc.

diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -55,10 +55,7 @@
     COMPILE_LIBFFI = None
 
 if COMPILE_LIBFFI:
-    assert os.path.isdir(COMPILE_LIBFFI), (
-        "On Windows, you need to copy the directory "
-        "Modules\\_ctypes\\libffi_msvc from the CPython sources (2.6 or 2.7) "
-        "into the top-level directory.")
+    assert os.path.isdir(COMPILE_LIBFFI), "directory not found!"
     include_dirs[:] = [COMPILE_LIBFFI]
     libraries[:] = []
     _filenames = [filename.lower() for filename in os.listdir(COMPILE_LIBFFI)]


More information about the pypy-commit mailing list