diff options
author | Steve Wills <swills@FreeBSD.org> | 2018-06-14 23:18:08 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2018-06-14 23:18:08 +0000 |
commit | c392d46476ca98210af462c16d4ecab08ab55462 (patch) | |
tree | 46bfa97ecb59d8a95032a4529f9f6e362626ce2c /databases/sqlite3/Makefile | |
parent | 0942caa218e1df1d242c849415bc53fb4ecba926 (diff) |
Notes
Diffstat (limited to 'databases/sqlite3/Makefile')
-rw-r--r-- | databases/sqlite3/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile index 616b60e5f2af..03b7c4c367e2 100644 --- a/databases/sqlite3/Makefile +++ b/databases/sqlite3/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sqlite3 -DISTVERSION= 3.23.1 +DISTVERSION= 3.24.0 CATEGORIES= databases MASTER_SITES= https://www.sqlite.org/2018/ http://www2.sqlite.org/2018/ http://www3.sqlite.org/2018/ DISTNAME= sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00 @@ -23,7 +23,7 @@ MAKE_JOBS_UNSAFE= yes OPTIONS_DEFINE= FTS4 UPD_DEL_LIMIT URI URI_AUTHORITY METADATA \ DIRECT_READ MEMMAN SECURE_DELETE UNLOCK_NOTIFY THREADS \ EXTENSION ARMOR STMT DBPAGE DBSTAT FTS5 RBU NULL_TRIM \ - LIKENOTBLOB STSHELL FTS3_TOKEN UNKNOWN_SQL + LIKENOTBLOB STSHELL FTS3_TOKEN UNKNOWN_SQL SORT_REF OPTIONS_SINGLE= RAMT OPTIONS_RADIO= STAT OPTIONS_GROUP= OPT_EXT OPT_FUNC UNICODE RTREEG RL @@ -86,6 +86,9 @@ RBU_DESC= Enable the resumable bulk update # https://www.sqlite.org/c3ref/stmt_scanstatus.html STMT_DESC= Prepared statement scan status +# https://www.sqlite.org/compile.html#enable_sorter_references +SORT_REF_DESC= To use references in the sorter + # https://www.sqlite.org/tempfiles.html#tempstore OPTIONS_SINGLE_RAMT= TS0 TS1 TS2 TS3 RAMT_DESC= Where to store temporary file @@ -216,6 +219,8 @@ OFFSET_CPPFLAGS= -DSQLITE_ENABLE_OFFSET_SQL_FUNC=1 SER1_CPPFLAGS= -DSQLITE_ENABLE_DESERIALIZE=1 +SORT_REF_CPPFLAGS= -DSQLITE_ENABLE_SORTER_REFERENCES=1 + .include <bsd.port.options.mk> # Platform Configuration |