Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Feb 2016 20:00:35 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r408698 - head/databases/sqlite3
Message-ID:  <201602112000.u1BK0ZVx091555@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Thu Feb 11 20:00:35 2016
New Revision: 408698
URL: https://svnweb.freebsd.org/changeset/ports/408698

Log:
  databases/sqlite3: Enable one of the command line editing options
  
  - The last update to sqlite3 disabled readline support
  - Now several variants can be selected.
  
  PR:		206944
  Submitted by:	Tobias Kortkamp <t@tobik.me>
  Approved by:	Pavel Volkov <pavelivolkov@gmail.com> (maintainer)

Modified:
  head/databases/sqlite3/Makefile

Modified: head/databases/sqlite3/Makefile
==============================================================================
--- head/databases/sqlite3/Makefile	Thu Feb 11 19:42:57 2016	(r408697)
+++ head/databases/sqlite3/Makefile	Thu Feb 11 20:00:35 2016	(r408698)
@@ -3,7 +3,7 @@
 
 PORTNAME=	sqlite3
 PORTVERSION=	3.10.2
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	databases
 MASTER_SITES=	https://www.sqlite.org/2016/ http://www2.sqlite.org/2016/ http://www3.sqlite.org/2016/
 DISTNAME=	sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00
@@ -27,8 +27,8 @@ OPTIONS_DEFINE=	FTS4 UPD_DEL_LIMIT URI U
 		EXTENSION ARMOR STMT DBSTAT FTS5 JSON1 RBU \
 		LIKENOTBLOB STSHELL
 OPTIONS_SINGLE=	RAMT
-OPTIONS_RADIO=	STAT RL
-OPTIONS_GROUP=	UNICODE RTREEG
+OPTIONS_RADIO=	STAT
+OPTIONS_GROUP=	UNICODE RTREEG RL
 
 UPD_DEL_LIMIT_DESC=	ORDER BY and LIMIT on UPDATE and DELETE
 URI_DESC=		Enable use the URI filename
@@ -92,14 +92,17 @@ RTREEG_DESC=		Index type for range queri
 RTREE_DESC=		Enable R*Tree module
 RTREE_INT_DESC=		Store 32-bit sig int (no float) coordinates
 
-OPTIONS_RADIO_RL=	READLINES READLINEP EDITLINE
+OPTIONS_GROUP_RL=	READLINES READLINEP EDITLINE
 RL_DESC=		Which command line editing library to use:
 READLINES_DESC=		the libreadline from system
 READLINEP_DESC=		the GNU libreadline from ports
 EDITLINE_DESC=		the BSD libedit from ports
+READLINES_PREVENTS=	READLINEP EDITLINE
+READLINEP_PREVENTS=	READLINES EDITLINE
+EDITLINE_PREVENTS=	READLINES READLINEP
 
 OPTIONS_DEFAULT=	FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS \
-			EXTENSION TS1 UNICODE61 RTREE DBSTAT STSHELL
+			EXTENSION TS1 UNICODE61 RTREE DBSTAT STSHELL READLINES
 # SECURE_DELETE, UNLOCK_NOTIFY, DBSTAT (since 41.0) used by www/firefox et al.
 # RTREE used by graphics/mapnik, databases/spatialite
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602112000.u1BK0ZVx091555>