svn commit: r318713 - head/lang/pypy/files
David Naylor
dbn at FreeBSD.org
Tue May 21 15:40:55 UTC 2013
Author: dbn
Date: Tue May 21 15:40:54 2013
New Revision: 318713
URL: http://svnweb.freebsd.org/changeset/ports/318713
Log:
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)
Added:
head/lang/pypy/files/patch-lib__pypyX.Y__lib_pypy___sqlite3.py (contents, props changed)
Added: head/lang/pypy/files/patch-lib__pypyX.Y__lib_pypy___sqlite3.py
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/lang/pypy/files/patch-lib__pypyX.Y__lib_pypy___sqlite3.py Tue May 21 15:40:54 2013 (r318713)
@@ -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 = [
More information about the svn-ports-all
mailing list