From f787190dd47a94bed74683bbda43f93b655a31cf Mon Sep 17 00:00:00 2001 From: x11x <28614156+x11x@users.noreply.github.com> Date: Wed, 26 Jan 2022 11:13:15 +1000 Subject: [PATCH] Use HTTPS for download URL sqlite.org supports https download URL, so use that instead (especially since downloaded zip is not being verified). --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 85cb1dd..59d35cd 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,8 @@ SQLITE_VERSION ?= 3280000 SQLITE_YEAR ?= 2019 SQLITE_BASENAME := sqlite-amalgamation-$(SQLITE_VERSION) -# Complete URL sample: http://www.sqlite.org/2017/sqlite-amalgamation-3160100.zip -SQLITE_URL := http://www.sqlite.org/$(SQLITE_YEAR)/$(SQLITE_BASENAME).zip +# Complete URL sample: https://www.sqlite.org/2017/sqlite-amalgamation-3160100.zip +SQLITE_URL := https://www.sqlite.org/$(SQLITE_YEAR)/$(SQLITE_BASENAME).zip # Build/Compile libs/armeabi/sqlite3-static: build/sqlite3.c