[pypy-commit] cffi bencord0/also-look-for-ffih-under-usrlocalinclude-1426863787737: Also look for ffi.h under /usr/local/include

bencord0 noreply at buildbot.pypy.org
Sun Mar 22 18:15:34 CET 2015


Author: Ben Cordero <bitbucket at condi.me>
Branch: bencord0/also-look-for-ffih-under-usrlocalinclude-1426863787737
Changeset: r1675:8dc344226542
Date: 2015-03-20 15:03 +0000
http://bitbucket.org/cffi/cffi/changeset/8dc344226542/

Log:	Also look for ffi.h under /usr/local/include

diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,8 @@
 sources = ['c/_cffi_backend.c']
 libraries = ['ffi']
 include_dirs = ['/usr/include/ffi',
-                '/usr/include/libffi']    # may be changed by pkg-config
+                '/usr/include/libffi',
+                '/usr/local/include']    # may be changed by pkg-config
 define_macros = []
 library_dirs = []
 extra_compile_args = []


More information about the pypy-commit mailing list