diff options
author | Rosen Penev <rosenp@gmail.com> | 2017-12-10 19:54:14 -0800 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2017-12-10 20:03:37 -0800 |
commit | 170de23a80715bb7d91123af07f96348577c1b3c (patch) | |
tree | 9658050fc7d344991339eccfdd969e991ac85cb7 /libs/gnutls | |
parent | 1484eee7598763b599d1721ba8650cdbf22a47c7 (diff) |
gnutls: Use HTTPS instead of FTP
While recently building asterisk, the make system stalled on gnutls. On my install of Ubuntu 16.04 on WSL, it seems curl can't download from ftp and doesn't even time out properly. Easiest solution is to switch the gnutls Makefile to use HTTPS instead.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'libs/gnutls')
-rw-r--r-- | libs/gnutls/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gnutls/Makefile b/libs/gnutls/Makefile index e060e33fa..b5bbd157c 100644 --- a/libs/gnutls/Makefile +++ b/libs/gnutls/Makefile @@ -13,7 +13,7 @@ PKG_RELEASE:=1 PKG_USE_MIPS16:=0 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz -PKG_SOURCE_URL:=ftp://ftp.gnutls.org/gcrypt/gnutls/v3.5 +PKG_SOURCE_URL:=https://www.gnupg.org/ftp/gcrypt/gnutls/v3.5 PKG_HASH:=0924dec90c37c05f49fec966eba3672dab4d336d879e5c06e06e13325cbfec25 #PKG_FIXUP:=autoreconf gettext-version PKG_MAINTAINER:=Nikos Mavrogiannopoulos <nmav@gnutls.org> |