diff options
author | dbn <dbn@FreeBSD.org> | 2013-12-12 03:28:33 +0800 |
---|---|---|
committer | dbn <dbn@FreeBSD.org> | 2013-12-12 03:28:33 +0800 |
commit | 074f55afeb6007315ab4466bd3a041013529e2f6 (patch) | |
tree | d73bca0c7ce3f889edd55a04c2cd9d802d2ec68c /lang | |
parent | 12271c7f4ba559e2d8a136990a677d9c0c175871 (diff) | |
download | freebsd-ports-gnome-074f55afeb6007315ab4466bd3a041013529e2f6.tar.gz freebsd-ports-gnome-074f55afeb6007315ab4466bd3a041013529e2f6.tar.zst freebsd-ports-gnome-074f55afeb6007315ab4466bd3a041013529e2f6.zip |
Add missing patch (missing `svn add`) for lang/pypy.
Without this patch building and packaging would fail so no PORTREVISION
required.
Reported by: bdrewery, pkg-fallout
Diffstat (limited to 'lang')
-rw-r--r-- | lang/pypy/files/patch-lib_pypy___sqlite3.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/pypy/files/patch-lib_pypy___sqlite3.py b/lang/pypy/files/patch-lib_pypy___sqlite3.py new file mode 100644 index 000000000000..6cb5a0c53265 --- /dev/null +++ b/lang/pypy/files/patch-lib_pypy___sqlite3.py @@ -0,0 +1,11 @@ +--- lib_pypy/_sqlite3.py.orig 2013-05-18 16:20:00.000000000 +0200 ++++ 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 = [ |