From 847ebdc9096f85dbba2f403608a73e21f0bd8042 Mon Sep 17 00:00:00 2001 From: Etienne CHAMPETIER Date: Tue, 9 Aug 2016 19:10:04 +0000 Subject: [PATCH] sqlite3: --disable-editline sqlite3 can now use editline or readline, most package use readline, and we were using it, so continue using readline and disable editline Signed-off-by: Etienne CHAMPETIER --- libs/sqlite3/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/sqlite3/Makefile b/libs/sqlite3/Makefile index a30028fbd..f9bd2c794 100644 --- a/libs/sqlite3/Makefile +++ b/libs/sqlite3/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=sqlite PKG_VERSION:=3130000 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-autoconf-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.sqlite.org/2016/ @@ -74,6 +74,7 @@ TARGET_CFLAGS += $(FPIC) \ CONFIGURE_ARGS += \ --enable-shared \ --enable-static \ + --disable-editline CONFIGURE_VARS += \ config_BUILD_CC="$(HOSTCC)" \