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

Collapse All | Expand All

(-)databases/sqlite3/Makefile (-18 / +12 lines)
Lines 13-19 Link Here
13
13
14
LICENSE=	PD
14
LICENSE=	PD
15
15
16
USES=		libtool ncurses pathfix
16
USES=		libtool pathfix
17
USE_LDCONFIG=	yes
17
USE_LDCONFIG=	yes
18
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
19
INSTALL_TARGET=	install-strip
19
INSTALL_TARGET=	install-strip
Lines 26-33 Link Here
26
		EXTENSION ARMOR STMT DBSTAT FTS5 JSON1 RBU NULL_TRIM \
26
		EXTENSION ARMOR STMT DBSTAT FTS5 JSON1 RBU NULL_TRIM \
27
		LIKENOTBLOB STSHELL FTS3_TOKEN SESSION UNKNOWN_SQL
27
		LIKENOTBLOB STSHELL FTS3_TOKEN SESSION UNKNOWN_SQL
28
OPTIONS_SINGLE=	RAMT
28
OPTIONS_SINGLE=	RAMT
29
OPTIONS_RADIO=	STAT
29
OPTIONS_RADIO=	STAT RL
30
OPTIONS_GROUP=	UNICODE RTREEG RL
30
OPTIONS_GROUP=	UNICODE RTREEG
31
31
32
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
33
URI_DESC=		Enable use the URI filename
33
URI_DESC=		Enable use the URI filename
Lines 104-120 Link Here
104
RTREE_DESC=		Enable R*Tree module
104
RTREE_DESC=		Enable R*Tree module
105
RTREE_INT_DESC=		Store 32-bit sig int (no float) coordinates
105
RTREE_INT_DESC=		Store 32-bit sig int (no float) coordinates
106
106
107
OPTIONS_GROUP_RL=	READLINES READLINEP EDITLINE
107
OPTIONS_RADIO_RL=	LIBEDIT READLINE
108
RL_DESC=		Which command line editing library to use:
108
RL_DESC=		Command line editing library (may be off)
109
READLINES_DESC=		the libreadline from system
110
READLINEP_DESC=		the GNU libreadline from ports
111
EDITLINE_DESC=		the BSD libedit from ports
112
READLINES_PREVENTS=	READLINEP EDITLINE
113
READLINEP_PREVENTS=	READLINES EDITLINE
114
EDITLINE_PREVENTS=	READLINES READLINEP
115
109
116
OPTIONS_DEFAULT=	FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS \
110
OPTIONS_DEFAULT=	FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS \
117
			EXTENSION TS1 UNICODE61 RTREE DBSTAT STSHELL READLINES \
111
			EXTENSION TS1 UNICODE61 RTREE DBSTAT STSHELL READLINE \
118
			FTS3_TOKEN
112
			FTS3_TOKEN
119
# SECURE_DELETE, UNLOCK_NOTIFY, DBSTAT (since 41.0) used by www/firefox et al.
113
# SECURE_DELETE, UNLOCK_NOTIFY, DBSTAT (since 41.0) used by www/firefox et al.
120
# RTREE used by graphics/mapnik, databases/spatialite
114
# RTREE used by graphics/mapnik, databases/spatialite
Lines 176-187 Link Here
176
UNICODE61_CPPFLAGS=	""
170
UNICODE61_CPPFLAGS=	""
177
UNICODE61_CPPFLAGS_OFF=	-DSQLITE_DISABLE_FTS3_UNICODE=1
171
UNICODE61_CPPFLAGS_OFF=	-DSQLITE_DISABLE_FTS3_UNICODE=1
178
172
179
READLINES_CONFIGURE_ON=	--enable-readline
173
LIBEDIT_CONFIGURE_ON=	--enable-editline
180
READLINES_USES=	readline
174
LIBEDIT_CONFIGURE_OFF=	--disable-editline
181
READLINEP_CONFIGURE_ON=	--enable-readline
175
LIBEDIT_USES=	libedit ncurses
182
READLINEP_USES=	readline:port
176
READLINE_CONFIGURE_ON=	--enable-readline
183
EDITLINE_CONFIGURE_ENABLE=	editline
177
READLINE_CONFIGURE_OFF=	--disable-readline
184
EDITLINE_USES=	libedit
178
READLINE_USES=	readline ncurses
185
179
186
JSON1_CONFIGURE_ENABLE=	json1
180
JSON1_CONFIGURE_ENABLE=	json1
187
181

Return to bug 222021