View | Details | Raw Unified | Return to bug 206944 | Differences between
and this patch

Collapse All | Expand All

(-)databases/sqlite3/Makefile (-5 / +8 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	sqlite3
4
PORTNAME=	sqlite3
5
PORTVERSION=	3.10.2
5
PORTVERSION=	3.10.2
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	databases
7
CATEGORIES=	databases
8
MASTER_SITES=	https://www.sqlite.org/2016/ http://www2.sqlite.org/2016/ http://www3.sqlite.org/2016/
8
MASTER_SITES=	https://www.sqlite.org/2016/ http://www2.sqlite.org/2016/ http://www3.sqlite.org/2016/
9
DISTNAME=	sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00
9
DISTNAME=	sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00
Lines 29-36 OPTIONS_DEFINE= FTS4 UPD_DEL_LIMIT URI U Link Here
29
		EXTENSION ARMOR STMT DBSTAT FTS5 JSON1 RBU \
29
		EXTENSION ARMOR STMT DBSTAT FTS5 JSON1 RBU \
30
		LIKENOTBLOB STSHELL
30
		LIKENOTBLOB STSHELL
31
OPTIONS_SINGLE=	RAMT
31
OPTIONS_SINGLE=	RAMT
32
OPTIONS_RADIO=	STAT RL
32
OPTIONS_RADIO=	STAT
33
OPTIONS_GROUP=	UNICODE RTREEG
33
OPTIONS_GROUP=	UNICODE RTREEG RL
34
34
35
UPD_DEL_LIMIT_DESC=	ORDER BY and LIMIT on UPDATE and DELETE
35
UPD_DEL_LIMIT_DESC=	ORDER BY and LIMIT on UPDATE and DELETE
36
URI_DESC=		Enable use the URI filename
36
URI_DESC=		Enable use the URI filename
Lines 94-107 RTREEG_DESC= Index type for range queri Link Here
94
RTREE_DESC=		Enable R*Tree module
94
RTREE_DESC=		Enable R*Tree module
95
RTREE_INT_DESC=		Store 32-bit sig int (no float) coordinates
95
RTREE_INT_DESC=		Store 32-bit sig int (no float) coordinates
96
96
97
OPTIONS_RADIO_RL=	READLINES READLINEP EDITLINE
97
OPTIONS_GROUP_RL=	READLINES READLINEP EDITLINE
98
RL_DESC=		Which command line editing library to use:
98
RL_DESC=		Which command line editing library to use:
99
READLINES_DESC=		the libreadline from system
99
READLINES_DESC=		the libreadline from system
100
READLINEP_DESC=		the GNU libreadline from ports
100
READLINEP_DESC=		the GNU libreadline from ports
101
EDITLINE_DESC=		the BSD libedit from ports
101
EDITLINE_DESC=		the BSD libedit from ports
102
READLINES_PREVENTS=	READLINEP EDITLINE
103
READLINEP_PREVENTS=	READLINES EDITLINE
104
EDITLINE_PREVENTS=	READLINES READLINEP
102
105
103
OPTIONS_DEFAULT=	FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS \
106
OPTIONS_DEFAULT=	FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS \
104
			EXTENSION TS1 UNICODE61 RTREE DBSTAT STSHELL
107
			EXTENSION TS1 UNICODE61 RTREE DBSTAT STSHELL READLINES
105
# SECURE_DELETE, UNLOCK_NOTIFY, DBSTAT (since 41.0) used by www/firefox et al.
108
# SECURE_DELETE, UNLOCK_NOTIFY, DBSTAT (since 41.0) used by www/firefox et al.
106
# RTREE used by graphics/mapnik, databases/spatialite
109
# RTREE used by graphics/mapnik, databases/spatialite
107
110

Return to bug 206944