[vlc-commits] contrib:sqlite: disable readline support
Steve Lhomme
git at videolan.org
Wed Oct 10 11:23:01 CEST 2018
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Tue Oct 2 15:24:06 2018 +0200| [872fd3dffc2571b82cd6458b89de3547153889c6] | committer: Steve Lhomme
contrib:sqlite: disable readline support
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=872fd3dffc2571b82cd6458b89de3547153889c6
---
contrib/src/sqlite/rules.mak | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/contrib/src/sqlite/rules.mak b/contrib/src/sqlite/rules.mak
index 2eeda6911f..295ba64a58 100644
--- a/contrib/src/sqlite/rules.mak
+++ b/contrib/src/sqlite/rules.mak
@@ -9,6 +9,8 @@ ifeq ($(call need_pkg,"sqlite3"),)
PKGS_FOUND += sqlite
endif
+SQLITE_CONF = $(HOSTCONF) --disable-readline
+
$(TARBALLS)/sqlite-autoconf-$(SQLITE_VERSION).tar.gz:
$(call download_pkg,$(SQLITE_URL),sqlite)
@@ -20,6 +22,6 @@ sqlite: sqlite-autoconf-$(SQLITE_VERSION).tar.gz .sum-sqlite
$(MOVE)
.sqlite: sqlite
- cd $< && $(HOSTVARS) ./configure $(HOSTCONF)
+ cd $< && $(HOSTVARS) ./configure $(SQLITE_CONF)
cd $< && $(MAKE) && $(MAKE) install
touch $@
More information about the vlc-commits
mailing list