svn commit: r543921 - head/databases/sqlite3
Guido Falsi
madpilot at FreeBSD.org
Sat Aug 1 19:14:11 UTC 2020
Author: madpilot
Date: Sat Aug 1 19:14:10 2020
New Revision: 543921
URL: https://svnweb.freebsd.org/changeset/ports/543921
Log:
- Add back REALINEP and READLINES options and make them and LIBEDIT
option work after r542047 [1]
- Also add back options descriptions [1]
- While here make STAT3 and STAT4 options descriptions start with
uppercase letter [1]
- Since in r542047 OPTIONS_GROUP_RL was changed to OPTIONS_RADIO_RL
also bug 239228 can be closed [2]
PR: 248323 [1], 239228 [2]
Submitted by: myself [1], Dennis Clarke <dclarke at blastwave.org> [2]
Approved by: maintainer [1]
Modified:
head/databases/sqlite3/Makefile
Modified: head/databases/sqlite3/Makefile
==============================================================================
--- head/databases/sqlite3/Makefile Sat Aug 1 18:37:47 2020 (r543920)
+++ head/databases/sqlite3/Makefile Sat Aug 1 19:14:10 2020 (r543921)
@@ -109,8 +109,8 @@ TS3_DESC= Always use memory
# https://www.sqlite.org/queryplanner-ng.html#qpstab
OPTIONS_RADIO_STAT= STAT3 STAT4
STAT_DESC= Which query planner to use, stability or ...
-STAT3_DESC= collect histogram data from leftmost column
-STAT4_DESC= collect histogram data from all columns
+STAT3_DESC= Collect histogram data from leftmost column
+STAT4_DESC= Collect histogram data from all columns
# https://sqlite.org/compile.html#enable_dbpage_vtab
DBPAGE_DESC= Enable DBPAGE Virtual Table
@@ -132,8 +132,11 @@ RTREE_INT_DESC= Store 32-bit sig int (no float) coord
GEOPOLY_DESC= Uses the GeoJSON notation (RFC-7946)
GEOPOLY_IMPLIES= RTREE
-OPTIONS_RADIO_RL= READLINES READLINEP EDITLINE
+OPTIONS_RADIO_RL= READLINES READLINEP LIBEDIT
RL_DESC= Command line editing library (may be off)
+READLINES_DESC= Use libreadline from system
+READLINEP_DESC= Use GNU libreadline from ports
+LIBEDIT_DESC= Use BSD libedit from ports
OPTIONS_DEFAULT= FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS \
EXTENSION TS1 UNICODE61 RTREE DBSTAT STSHELL LIBEDIT \
@@ -203,8 +206,10 @@ UNICODE61_CPPFLAGS_OFF= -DSQLITE_DISABLE_FTS3_UNICODE=
LIBEDIT_CONFIGURE_ENABLE= editline
LIBEDIT_USES= libedit ncurses
-READLINE_CONFIGURE_ENABLE= readline
-READLINE_USES= readline ncurses
+READLINES_CONFIGURE_ON= --enable-readline
+READLINES_USES= readline
+READLINEP_CONFIGURE_ON= --enable-readline
+READLINEP_USES= readline:port
JSON1_CONFIGURE_ENABLE= json1
More information about the svn-ports-all
mailing list