From owner-svn-ports-head@freebsd.org Wed Aug 9 14:04:04 2017 Return-Path: Delivered-To: svn-ports-head@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 A8031DCDE55; Wed, 9 Aug 2017 14:04:04 +0000 (UTC) (envelope-from madpilot@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 73BD173700; Wed, 9 Aug 2017 14:04:04 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v79E43bl030058; Wed, 9 Aug 2017 14:04:03 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v79E43m4030057; Wed, 9 Aug 2017 14:04:03 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201708091404.v79E43m4030057@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Wed, 9 Aug 2017 14:04:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r447626 - head/databases/sqlite3 X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: head/databases/sqlite3 X-SVN-Commit-Revision: 447626 X-SVN-Commit-Repository: ports 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.23 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: Wed, 09 Aug 2017 14:04:04 -0000 Author: madpilot Date: Wed Aug 9 14:04:03 2017 New Revision: 447626 URL: https://svnweb.freebsd.org/changeset/ports/447626 Log: Add explicit SQLITE_ENABLE_FTS3. This fixes the firefox and thunderburd ports build. Due to recent changes in sqlite3 even if this flag is actually implicitly added to the build when the FTS4 option is enabled, it is not reported as present via the sqlite3_compileoption_used("SQLITE_ENABLE_FTS3") API call, which is used by the gecko ports configure script to check for a suitable sqlite3 library. Related upstream change: https://sqlite.org/src/info/9a443397a6b110f6 PR: 221361, 219963 Submitted by: Vladimir Krstulja , jbeich@ Approved by: portmgr@ (blanket) MFH: 2017Q3 Modified: head/databases/sqlite3/Makefile Modified: head/databases/sqlite3/Makefile ============================================================================== --- head/databases/sqlite3/Makefile Wed Aug 9 12:08:39 2017 (r447625) +++ head/databases/sqlite3/Makefile Wed Aug 9 14:04:03 2017 (r447626) @@ -3,7 +3,7 @@ PORTNAME= sqlite3 PORTVERSION= 3.20.0 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= https://www.sqlite.org/2017/ http://www2.sqlite.org/2017/ http://www3.sqlite.org/2017/ DISTNAME= sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00 @@ -141,7 +141,7 @@ TS3_CPPFLAGS= -DSQLITE_TEMP_STORE=3 RTREE_CPPFLAGS= -DSQLITE_ENABLE_RTREE=1 RTREE_INT_CPPFLAGS= -DSQLITE_RTREE_INT_ONLY=1 -FTS4_CPPFLAGS= -DSQLITE_ENABLE_FTS3_PARENTHESIS=1 -DSQLITE_ENABLE_FTS4=1 +FTS4_CPPFLAGS= -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS=1 -DSQLITE_ENABLE_FTS4=1 FTS5_CONFIGURE_ENABLE= fts5 FTS3_TOKEN_CPPFLAGS= -DSQLITE_ENABLE_FTS3_TOKENIZER=1