From: George Sapkin Date: Sat, 10 May 2025 19:23:39 +0000 (+0300) Subject: sqlite3: require matching lib version in shell X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=5b8e0fd4646ff3d7964d5ddbc9cabe98d3d3e6ce;p=openwrt-packages.git sqlite3: require matching lib version in shell Shell expects a matching library version to be installed. Specify a matching version using EXTRA_DEPENDS. Signed-off-by: George Sapkin --- diff --git a/libs/sqlite3/Makefile b/libs/sqlite3/Makefile index f41bd3a5c..510489a59 100644 --- a/libs/sqlite3/Makefile +++ b/libs/sqlite3/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=sqlite PKG_VERSION:=3.49.1 PKG_SRC_VERSION:=3490100 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-autoconf-$(PKG_SRC_VERSION).tar.gz PKG_SOURCE_URL:=https://www.sqlite.org/2025/ @@ -75,10 +75,11 @@ define Package/sqlite3-cli SECTION:=utils CATEGORY:=Utilities DEPENDS := \ - +libsqlite3 \ - +SQLITE3_LIBEDIT:libedit \ - +SQLITE3_READLINE:libreadline \ - +SQLITE3_READLINE:libncursesw + +libsqlite3 \ + +SQLITE3_LIBEDIT:libedit \ + +SQLITE3_READLINE:libreadline \ + +SQLITE3_READLINE:libncursesw + EXTRA_DEPENDS:=libsqlite3 (=$(PKG_VERSION)-r$(PKG_RELEASE)) TITLE+= (cli) endef