changeset 5461:d7a5ef5c3882

* src/sqlite.mk: tercap dependancy only for mingw
author John Donoghue <john.donoghue@ieee.org>
date Fri, 12 Jun 2020 17:16:05 -0400
parents b19af28f7ee3
children 459061662bd5
files src/sqlite.mk
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/sqlite.mk	Fri Jun 12 11:53:40 2020 -0400
+++ b/src/sqlite.mk	Fri Jun 12 17:16:05 2020 -0400
@@ -8,7 +8,11 @@
 $(PKG)_SUBDIR   := $(PKG)-autoconf-$($(PKG)_VERSION)
 $(PKG)_FILE     := $(PKG)-autoconf-$($(PKG)_VERSION).tar.gz
 $(PKG)_URL      := http://www.sqlite.org/2020/$($(PKG)_FILE)
-$(PKG)_DEPS     := termcap readline zlib
+$(PKG)_DEPS     := readline zlib
+
+ifeq ($(MXE_SYSTEM),mingw)
+$(PKG)_DEPS     += termcap
+endif
 
 define $(PKG)_UPDATE
     $(WGET) -q -O- 'http://www.sqlite.org/download.html' | \