diff options
| author | Chukun Pan | 2024-09-18 15:10:16 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2024-09-25 21:30:22 +0000 |
| commit | 38bb47c36c473a33b054a76dcd52827ae15fb610 (patch) | |
| tree | 08f4b70b9df00afb963ac984f89c8b4afd22b942 | |
| parent | ba24b94e0b84840d6396d57672e1a33032ebe146 (diff) | |
| download | openwrt-38bb47c36c473a33b054a76dcd52827ae15fb610.tar.gz | |
openssl: update download mirrors
New releases of openssl are only published on GitHub, and official
downloads are also redirected to GitHub. So remove the old download
mirrors (file 404), and replace the current address with https.
Link: https://openssl-library.org/source/
Signed-off-by: Chukun Pan <amadeus@jmu.edu.cn>
Link: https://github.com/openwrt/openwrt/pull/16470
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/libs/openssl/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/package/libs/openssl/Makefile b/package/libs/openssl/Makefile index 554cde7a2d..959424ce12 100644 --- a/package/libs/openssl/Makefile +++ b/package/libs/openssl/Makefile @@ -17,13 +17,9 @@ PKG_BUILD_PARALLEL:=1 PKG_BASE:=$(subst $(space),.,$(wordlist 1,2,$(subst .,$(space),$(PKG_VERSION)))) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:= \ - http://www.openssl.org/source/ \ - http://www.openssl.org/source/old/$(PKG_BASE)/ \ - https://github.com/openssl/openssl/releases/download/$(PKG_NAME)-$(PKG_VERSION)/ \ - http://ftp.fi.muni.cz/pub/openssl/source/ \ - http://ftp.fi.muni.cz/pub/openssl/source/old/$(PKG_BASE)/ \ - ftp://ftp.pca.dfn.de/pub/tools/net/openssl/source/ \ - ftp://ftp.pca.dfn.de/pub/tools/net/openssl/source/old/$(PKG_BASE)/ + https://www.openssl.org/source/ \ + https://www.openssl.org/source/old/$(PKG_BASE)/ \ + https://github.com/openssl/openssl/releases/download/$(PKG_NAME)-$(PKG_VERSION)/ PKG_HASH:=23c666d0edf20f14249b3d8f0368acaee9ab585b09e1de82107c66e1f3ec9533 @@ -74,7 +70,7 @@ endif define Package/openssl/Default TITLE:=Open source SSL toolkit - URL:=http://www.openssl.org/ + URL:=https://www.openssl.org/ SECTION:=libs CATEGORY:=Libraries endef |