svn commit: r447666 - branches/2017Q3/databases/sqlite3

Guido Falsi madpilot at FreeBSD.org
Thu Aug 10 08:12:48 UTC 2017


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 at 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
 


More information about the svn-ports-branches mailing list