diff network/curl/curl.sh @ 902:a133976e0783

vanilla: remove all origins, closes #2203
author David Demelier <markand@malikania.fr>
date Mon, 26 Aug 2019 12:14:53 +0200
parents 0e6c54d47dfb
children ddab65a5b3f5
line wrap: on
line diff
--- a/network/curl/curl.sh	Mon Aug 26 20:45:00 2019 +0200
+++ b/network/curl/curl.sh	Mon Aug 26 12:14:53 2019 +0200
@@ -36,7 +36,7 @@
 : ${SSL:=yes}
 
 if [ "$IDN2" = "yes" ]; then
-	PKGDEPENDS="dns/libidn2 $PKGDEPENDS"
+	PKGDEPENDS="libidn2 $PKGDEPENDS"
 	with_idn2="--with-libidn2"
 else
 	with_idn2="--without-libidn2"
@@ -49,21 +49,21 @@
 fi
 
 if [ "$NGHTTP2" = "yes" ]; then
-	PKGDEPENDS="network/nghttp2 $PKGDEPENDS"
+	PKGDEPENDS="nghttp2 $PKGDEPENDS"
 	with_nghttp2="--with-nghttp2"
 else
 	with_nghttp2="--without-nghttp2"
 fi
 
 if [ "$SSH" = "yes" ]; then
-	PKGDEPENDS="network/libssh2 $PKGDEPENDS"
+	PKGDEPENDS="libssh2 $PKGDEPENDS"
 	with_ssh="--with-libssh2"
 else
 	with_ssh="--without-libssh2"
 fi
 
 if [ "$SSL" = "yes" ]; then
-	PKGDEPENDS="crypto/libressl $PKGDEPENDS"
+	PKGDEPENDS="libressl $PKGDEPENDS"
 	with_ssl="--with-ssl"
 else
 	with_ssl="--without-ssl"