summaryrefslogtreecommitdiffstats
path: root/package/sqlite/sqlite.mk
diff options
context:
space:
mode:
authorBernd Kuhls <bernd.kuhls@t-online.de>2016-02-08 20:56:41 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-02-23 23:56:02 +0100
commit007c2ce917199339c0876227c2e612b11f8e7e15 (patch)
treed4bccdddcfe55b4066fab7f1cce75f1f5e3dbcfa /package/sqlite/sqlite.mk
parent6c49ae49d9cf42d29b31505054b79ea414c33480 (diff)
downloadbuildroot-007c2ce917199339c0876227c2e612b11f8e7e15.tar.gz
buildroot-007c2ce917199339c0876227c2e612b11f8e7e15.zip
package/sqlite: add optional support for libedit
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/sqlite/sqlite.mk')
-rw-r--r--package/sqlite/sqlite.mk9
1 files changed, 6 insertions, 3 deletions
diff --git a/package/sqlite/sqlite.mk b/package/sqlite/sqlite.mk
index 0a119cc30e..870b891c4f 100644
--- a/package/sqlite/sqlite.mk
+++ b/package/sqlite/sqlite.mk
@@ -45,11 +45,14 @@ else
SQLITE_CONF_OPTS += --disable-threadsafe
endif
-ifeq ($(BR2_PACKAGE_SQLITE_READLINE),y)
+ifeq ($(BR2_PACKAGE_NCURSES)$(BR2_PACKAGE_READLINE),yy)
SQLITE_DEPENDENCIES += ncurses readline
-SQLITE_CONF_OPTS += --enable-readline
+SQLITE_CONF_OPTS += --disable-editline --enable-readline
+else ifeq ($(BR2_PACKAGE_LIBEDIT),y)
+SQLITE_DEPENDENCIES += libedit
+SQLITE_CONF_OPTS += --enable-editline --disable-readline
else
-SQLITE_CONF_OPTS += --disable-readline
+SQLITE_CONF_OPTS += --disable-editline --disable-readline
endif
$(eval $(autotools-package))
OpenPOWER on IntegriCloud