diff options
author | Daniel Engberg <daniel.engberg.lists@pyret.net> | 2018-07-24 13:59:30 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2018-07-24 15:35:51 +0200 |
commit | f486f81c649fe897f7070cbf14df504aea104029 (patch) | |
tree | 42f5ef08c3f1abbc2bcdfd19ef195b327a17a41f /package/network | |
parent | 991c7a4f69976f72bcee3f76d6917b224da45ea1 (diff) | |
download | upstream-f486f81c649fe897f7070cbf14df504aea104029.tar.gz upstream-f486f81c649fe897f7070cbf14df504aea104029.tar.bz2 upstream-f486f81c649fe897f7070cbf14df504aea104029.zip |
utils/curl: Disable libpsl
Disabled libpsl to fix build issue reported by buildbots
Package libcurl is missing dependencies for the following libraries:
libpsl.so.5
Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
Diffstat (limited to 'package/network')
-rw-r--r-- | package/network/utils/curl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/network/utils/curl/Makefile b/package/network/utils/curl/Makefile index 157ec3462d..7b93b7f9c1 100644 --- a/package/network/utils/curl/Makefile +++ b/package/network/utils/curl/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=curl PKG_VERSION:=7.61.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://dl.uxnr.de/mirror/curl/ \ @@ -113,6 +113,7 @@ CONFIGURE_ARGS += \ --without-librtmp \ --without-libidn \ --without-ca-path \ + --without-libpsl \ --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt \ \ $(call autoconf_bool,CONFIG_IPV6,ipv6) \ |