From owner-svn-ports-head@FreeBSD.ORG Tue May 21 15:40:55 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 36F4861C; Tue, 21 May 2013 15:40:55 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 28553A4D; Tue, 21 May 2013 15:40:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4LFesdh045347; Tue, 21 May 2013 15:40:54 GMT (envelope-from dbn@svn.freebsd.org) Received: (from dbn@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4LFesOW045346; Tue, 21 May 2013 15:40:54 GMT (envelope-from dbn@svn.freebsd.org) Message-Id: <201305211540.r4LFesOW045346@svn.freebsd.org> From: David Naylor Date: Tue, 21 May 2013 15:40:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r318713 - head/lang/pypy/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 May 2013 15:40:55 -0000 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 +-""", libraries=['sqlite3'] ++""", libraries=['sqlite3'], include_dirs=['/usr/local/include'], library_dirs=['/usr/local/lib'] + ) + + exported_sqlite_symbols = [