Date: Thu, 10 Aug 2017 08:12:47 +0000 (UTC) From: Guido Falsi <madpilot@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r447666 - branches/2017Q3/databases/sqlite3 Message-ID: <201708100812.v7A8ClvV078101@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: madpilot Date: Thu Aug 10 08:12:46 2017 New Revision: 447666 URL: https://svnweb.freebsd.org/changeset/ports/447666 Log: MFH: r447626 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 <vlad-fbsd@acheronmedia.com>, jbeich@ Approved by: portmgr@ (blanket) Approved by: portmgr (antoine) Modified: branches/2017Q3/databases/sqlite3/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/databases/sqlite3/Makefile ============================================================================== --- branches/2017Q3/databases/sqlite3/Makefile Thu Aug 10 06:16:35 2017 (r447665) +++ branches/2017Q3/databases/sqlite3/Makefile Thu Aug 10 08:12:46 2017 (r447666) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708100812.v7A8ClvV078101>