Build with --enable-fts5

tracker now requires that sqlite is built with --enable-fts5.

https://mail.gnome.org/archives/distributor-list/2017-August/msg00004.html
This commit is contained in:
Kalev Lember 2017-08-22 17:13:34 +02:00
parent 0249449d35
commit 9d50aaf262
1 changed files with 5 additions and 1 deletions

View File

@ -10,7 +10,7 @@
Summary: Library that implements an embeddable SQL database engine
Name: sqlite
Version: %{rpmver}
Release: 1%{?dist}
Release: 2%{?dist}
License: Public Domain
Group: Applications/Databases
URL: http://www.sqlite.org/
@ -148,6 +148,7 @@ export CFLAGS="$RPM_OPT_FLAGS -DSQLITE_ENABLE_COLUMN_METADATA=1 \
-DSQLITE_ENABLE_FTS3_PARENTHESIS=1 -DSQLITE_ENABLE_JSON1=1 \
-Wall -fno-strict-aliasing"
%configure %{!?with_tcl:--disable-tcl} \
--enable-fts5 \
--enable-threadsafe \
--enable-threads-override-locks \
--enable-load-extension \
@ -239,6 +240,9 @@ make test
%endif
%changelog
* Tue Aug 22 2017 Kalev Lember <klember@redhat.com> - 3.20.0-2
- Build with --enable-fts5
* Wed Aug 02 2017 Petr Kubat <pkubat@redhat.com> - 3.20.0-1
- Updated to version 3.20.0 (https://sqlite.org/releaselog/3_20_0.html)
- Fixes CVE-2017-7000 (#1478785)