diff options
author | dbn <dbn@FreeBSD.org> | 2013-05-21 23:40:54 +0800 |
---|---|---|
committer | dbn <dbn@FreeBSD.org> | 2013-05-21 23:40:54 +0800 |
commit | 4be00d6c836fc360cfccc2e0135bd85c7d0b392e (patch) | |
tree | dbd528c5e4c1199bcf1b2377a76366a370078adb /lang/pypy | |
parent | aa1d2e5aac972ff6ca20a1fe050c789482eb7d01 (diff) | |
download | freebsd-ports-gnome-4be00d6c836fc360cfccc2e0135bd85c7d0b392e.tar.gz freebsd-ports-gnome-4be00d6c836fc360cfccc2e0135bd85c7d0b392e.tar.zst freebsd-ports-gnome-4be00d6c836fc360cfccc2e0135bd85c7d0b392e.zip |
Fix build of lang/pypy (missing patch).
A patch that tought _sqlite3.py where to find sqlite3.h and sqlite3.so was
not added with the previous commit.
Approved by: eadler,bdrewery (mentors, implicit)
Diffstat (limited to 'lang/pypy')
-rw-r--r-- | lang/pypy/files/patch-lib__pypyX.Y__lib_pypy___sqlite3.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/pypy/files/patch-lib__pypyX.Y__lib_pypy___sqlite3.py b/lang/pypy/files/patch-lib__pypyX.Y__lib_pypy___sqlite3.py new file mode 100644 index 000000000000..c943058d8767 --- /dev/null +++ b/lang/pypy/files/patch-lib__pypyX.Y__lib_pypy___sqlite3.py @@ -0,0 +1,11 @@ +--- lib/pypy2.0/lib_pypy/_sqlite3.py.orig 2013-05-18 16:20:00.000000000 +0200 ++++ lib/pypy2.0/lib_pypy/_sqlite3.py 2013-05-18 16:21:06.000000000 +0200 +@@ -270,7 +270,7 @@ + + _lib = _ffi.verify(""" + #include <sqlite3.h> +-""", libraries=['sqlite3'] ++""", libraries=['sqlite3'], include_dirs=['/usr/local/include'], library_dirs=['/usr/local/lib'] + ) + + exported_sqlite_symbols = [ |