From owner-svn-ports-all@freebsd.org Tue Jun 6 13:51:36 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B02A3BD30A0; Tue, 6 Jun 2017 13:51:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8049468E65; Tue, 6 Jun 2017 13:51:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v56DpZv0024886; Tue, 6 Jun 2017 13:51:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v56DpZ0l024884; Tue, 6 Jun 2017 13:51:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706061351.v56DpZ0l024884@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 6 Jun 2017 13:51:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442773 - head/science/orthanc/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-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2017 13:51:36 -0000 Author: sunpoet Date: Tue Jun 6 13:51:35 2017 New Revision: 442773 URL: https://svnweb.freebsd.org/changeset/ports/442773 Log: Fix build with SQLite 3.19.2 Submitted by: Pavel Volkov Approved by: portmgr (blanket) Added: head/science/orthanc/files/patch-Core_SQLite_FunctionContext.cpp (contents, props changed) head/science/orthanc/files/patch-Core_SQLite_FunctionContext.h (contents, props changed) Added: head/science/orthanc/files/patch-Core_SQLite_FunctionContext.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/orthanc/files/patch-Core_SQLite_FunctionContext.cpp Tue Jun 6 13:51:35 2017 (r442773) @@ -0,0 +1,11 @@ +--- Core/SQLite/FunctionContext.cpp.orig 2016-06-27 11:02:35 UTC ++++ Core/SQLite/FunctionContext.cpp +@@ -49,7 +49,7 @@ namespace Orthanc + { + FunctionContext::FunctionContext(struct sqlite3_context* context, + int argc, +- struct ::Mem** argv) ++ struct sqlite3_value** argv) + { + assert(context != NULL); + assert(argc >= 0); Added: head/science/orthanc/files/patch-Core_SQLite_FunctionContext.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/orthanc/files/patch-Core_SQLite_FunctionContext.h Tue Jun 6 13:51:35 2017 (r442773) @@ -0,0 +1,28 @@ +--- Core/SQLite/FunctionContext.h.orig 2016-06-27 11:02:35 UTC ++++ Core/SQLite/FunctionContext.h +@@ -37,7 +37,7 @@ + #include "Statement.h" + + struct sqlite3_context; +-struct Mem; // This corresponds to the opaque type "sqlite3_value" ++struct sqlite3_value; // This corresponds to the opaque type "sqlite3_value" + + namespace Orthanc + { +@@ -50,14 +50,14 @@ namespace Orthanc + private: + struct sqlite3_context* context_; + unsigned int argc_; +- struct ::Mem** argv_; ++ struct sqlite3_value** argv_; + + void CheckIndex(unsigned int index) const; + + public: + FunctionContext(struct sqlite3_context* context, + int argc, +- struct ::Mem** argv); ++ struct sqlite3_value** argv); + + ColumnType GetColumnType(unsigned int index) const; +