Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 May 2013 15:40:54 +0000 (UTC)
From:      David Naylor <dbn@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r318713 - head/lang/pypy/files
Message-ID:  <201305211540.r4LFesOW045346@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 = [



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305211540.r4LFesOW045346>