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

Collapse All | Expand All

(-)databases/sqlite3/Makefile (-16 / +13 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	sqlite3
4
PORTNAME=	sqlite3
5
PORTVERSION=	3.20.1
5
PORTVERSION=	3.20.1
6
PORTREVISION=	1
6
CATEGORIES=	databases
7
CATEGORIES=	databases
7
MASTER_SITES=	https://www.sqlite.org/2017/ http://www2.sqlite.org/2017/ http://www3.sqlite.org/2017/
8
MASTER_SITES=	https://www.sqlite.org/2017/ http://www2.sqlite.org/2017/ http://www3.sqlite.org/2017/
8
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 12-18 Link Here
12
13
13
LICENSE=	PD
14
LICENSE=	PD
14
15
15
USES=		libtool ncurses pathfix
16
USES=		libtool pathfix
16
USE_LDCONFIG=	yes
17
USE_LDCONFIG=	yes
17
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
18
INSTALL_TARGET=	install-strip
19
INSTALL_TARGET=	install-strip
Lines 24-32 Link Here
24
		DIRECT_READ MEMMAN SECURE_DELETE UNLOCK_NOTIFY THREADS \
25
		DIRECT_READ MEMMAN SECURE_DELETE UNLOCK_NOTIFY THREADS \
25
		EXTENSION ARMOR STMT DBSTAT FTS5 JSON1 RBU NULL_TRIM \
26
		EXTENSION ARMOR STMT DBSTAT FTS5 JSON1 RBU NULL_TRIM \
26
		LIKENOTBLOB STSHELL FTS3_TOKEN SESSION UNKNOWN_SQL
27
		LIKENOTBLOB STSHELL FTS3_TOKEN SESSION UNKNOWN_SQL
27
OPTIONS_SINGLE=	RAMT
28
OPTIONS_SINGLE=	RAMT RL
28
OPTIONS_RADIO=	STAT
29
OPTIONS_RADIO=	STAT
29
OPTIONS_GROUP=	UNICODE RTREEG RL
30
OPTIONS_GROUP=	UNICODE RTREEG
30
31
31
UPD_DEL_LIMIT_DESC=	ORDER BY and LIMIT on UPDATE and DELETE
32
UPD_DEL_LIMIT_DESC=	ORDER BY and LIMIT on UPDATE and DELETE
32
URI_DESC=		Enable use the URI filename
33
URI_DESC=		Enable use the URI filename
Lines 103-119 Link Here
103
RTREE_DESC=		Enable R*Tree module
104
RTREE_DESC=		Enable R*Tree module
104
RTREE_INT_DESC=		Store 32-bit sig int (no float) coordinates
105
RTREE_INT_DESC=		Store 32-bit sig int (no float) coordinates
105
106
106
OPTIONS_GROUP_RL=	READLINES READLINEP EDITLINE
107
OPTIONS_SINGLE_RL=	EDITLINE READLINE NONERL
107
RL_DESC=		Which command line editing library to use:
108
RL_DESC=		Which command line editing library to use:
108
READLINES_DESC=		the libreadline from system
109
READLINEP_DESC=		the GNU libreadline from ports
110
EDITLINE_DESC=		the BSD libedit from ports
109
EDITLINE_DESC=		the BSD libedit from ports
111
READLINES_PREVENTS=	READLINEP EDITLINE
110
READLINE_DESC=		the GNU libreadline from ports
112
READLINEP_PREVENTS=	READLINES EDITLINE
111
NONERL_DESC=		without library
113
EDITLINE_PREVENTS=	READLINES READLINEP
114
112
115
OPTIONS_DEFAULT=	FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS \
113
OPTIONS_DEFAULT=	FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS \
116
			EXTENSION TS1 UNICODE61 RTREE DBSTAT STSHELL READLINES \
114
			EXTENSION TS1 UNICODE61 RTREE DBSTAT STSHELL READLINE \
117
			FTS3_TOKEN
115
			FTS3_TOKEN
118
# SECURE_DELETE, UNLOCK_NOTIFY, DBSTAT (since 41.0) used by www/firefox et al.
116
# SECURE_DELETE, UNLOCK_NOTIFY, DBSTAT (since 41.0) used by www/firefox et al.
119
# RTREE used by graphics/mapnik, databases/spatialite
117
# RTREE used by graphics/mapnik, databases/spatialite
Lines 175-186 Link Here
175
UNICODE61_CPPFLAGS=	""
173
UNICODE61_CPPFLAGS=	""
176
UNICODE61_CPPFLAGS_OFF=	-DSQLITE_DISABLE_FTS3_UNICODE=1
174
UNICODE61_CPPFLAGS_OFF=	-DSQLITE_DISABLE_FTS3_UNICODE=1
177
175
178
READLINES_CONFIGURE_ON=	--enable-readline
176
EDITLINE_CONFIGURE_ON=	--disable-readline
179
READLINES_USES=	readline
177
EDITLINE_USES=	libedit ncurses
180
READLINEP_CONFIGURE_ON=	--enable-readline
178
READLINE_CONFIGURE_ON=	--disable-editline
181
READLINEP_USES=	readline:port
179
READLINE_USES=	readline ncurses
182
EDITLINE_CONFIGURE_ENABLE=	editline
180
NONERL_CONFIGURE_ON=	--disable-readline --disable-editline
183
EDITLINE_USES=	libedit
184
181
185
JSON1_CONFIGURE_ENABLE=	json1
182
JSON1_CONFIGURE_ENABLE=	json1
186
183

Return to bug 222021