Lines 2-9
Link Here
|
2 |
# $FreeBSD: head/databases/sqlite3/Makefile 477940 2018-08-24 07:31:59Z jbeich $ |
2 |
# $FreeBSD: head/databases/sqlite3/Makefile 477940 2018-08-24 07:31:59Z jbeich $ |
3 |
|
3 |
|
4 |
PORTNAME= sqlite3 |
4 |
PORTNAME= sqlite3 |
5 |
DISTVERSION= 3.24.0 |
5 |
DISTVERSION= 3.25.0 |
6 |
PORTREVISION= 1 |
|
|
7 |
CATEGORIES= databases |
6 |
CATEGORIES= databases |
8 |
MASTER_SITES= https://www.sqlite.org/2018/ http://www2.sqlite.org/2018/ http://www3.sqlite.org/2018/ |
7 |
MASTER_SITES= https://www.sqlite.org/2018/ http://www2.sqlite.org/2018/ http://www3.sqlite.org/2018/ |
9 |
DISTNAME= sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00 |
8 |
DISTNAME= sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00 |
Lines 116-125
Link Here
|
116 |
UNICODE61_DESC= Unicode Version 6.1 tokenizer |
115 |
UNICODE61_DESC= Unicode Version 6.1 tokenizer |
117 |
|
116 |
|
118 |
# https://www.sqlite.org/rtree.html |
117 |
# https://www.sqlite.org/rtree.html |
119 |
OPTIONS_GROUP_RTREEG= RTREE RTREE_INT |
118 |
OPTIONS_GROUP_RTREEG= RTREE RTREE_INT GEOPOLY |
120 |
RTREEG_DESC= Index type for range queries |
119 |
RTREEG_DESC= Index type for range queries |
121 |
RTREE_DESC= Enable R*Tree module |
120 |
RTREE_DESC= Enable R*Tree module |
122 |
RTREE_INT_DESC= Store 32-bit sig int (no float) coordinates |
121 |
RTREE_INT_DESC= Store 32-bit sig int (no float) coordinates |
|
|
122 |
# https://www.sqlite.org/geopoly.html |
123 |
GEOPOLY_DESC= Uses the GeoJSON notation (RFC-7946) |
124 |
GEOPOLY_IMPLIES= RTREE |
123 |
|
125 |
|
124 |
OPTIONS_GROUP_RL= READLINES READLINEP EDITLINE |
126 |
OPTIONS_GROUP_RL= READLINES READLINEP EDITLINE |
125 |
RL_DESC= Which command line editing library to use: |
127 |
RL_DESC= Which command line editing library to use: |
Lines 158-163
Link Here
|
158 |
|
160 |
|
159 |
RTREE_CPPFLAGS= -DSQLITE_ENABLE_RTREE=1 |
161 |
RTREE_CPPFLAGS= -DSQLITE_ENABLE_RTREE=1 |
160 |
RTREE_INT_CPPFLAGS= -DSQLITE_RTREE_INT_ONLY=1 |
162 |
RTREE_INT_CPPFLAGS= -DSQLITE_RTREE_INT_ONLY=1 |
|
|
163 |
GEOPOLY_CPPFLAGS= -DSQLITE_ENABLE_GEOPOLY=1 |
161 |
|
164 |
|
162 |
FTS4_CPPFLAGS= -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS=1 -DSQLITE_ENABLE_FTS4=1 |
165 |
FTS4_CPPFLAGS= -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS=1 -DSQLITE_ENABLE_FTS4=1 |
163 |
FTS5_CONFIGURE_ENABLE= fts5 |
166 |
FTS5_CONFIGURE_ENABLE= fts5 |