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

Collapse All | Expand All

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

Return to bug 222021