diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2016-12-18 23:20:50 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2016-12-18 23:20:50 +0800 |
commit | ea1e15fb95e6c70283e2ae7646c0418d9a8ad37b (patch) | |
tree | 4fa86d57931f2d94f9971d379de500a552e20249 | |
parent | 6eb156cb574077033d47d69fcd52784fc05d14ea (diff) | |
download | freebsd-ports-gnome-ea1e15fb95e6c70283e2ae7646c0418d9a8ad37b.tar.gz freebsd-ports-gnome-ea1e15fb95e6c70283e2ae7646c0418d9a8ad37b.tar.zst freebsd-ports-gnome-ea1e15fb95e6c70283e2ae7646c0418d9a8ad37b.zip |
- Change HTTP2 dependency from www/nghttp2 to www/libnghttp2
- Enable HTTP2 option by default
- Bump PORTREVISION for dependency and package change
-rw-r--r-- | ftp/curl/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ftp/curl/Makefile b/ftp/curl/Makefile index 78969d00f045..92ddd5c22f2e 100644 --- a/ftp/curl/Makefile +++ b/ftp/curl/Makefile @@ -3,7 +3,7 @@ PORTNAME= curl PORTVERSION= 7.51.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= ftp net www MASTER_SITES= http://curl.haxx.se/download/ \ LOCAL/sunpoet @@ -20,7 +20,7 @@ OPTIONS_SINGLE= GSSAPI OPTIONS_RADIO_RESOLV= CARES THREADED_RESOLVER OPTIONS_RADIO_SSL= GNUTLS NSS OPENSSL POLARSSL WOLFSSL OPTIONS_SINGLE_GSSAPI= GSSAPI_BASE GSSAPI_HEIMDAL GSSAPI_MIT GSSAPI_NONE -OPTIONS_DEFAULT= CA_BUNDLE COOKIES OPENSSL PROXY RESOLV THREADED_RESOLVER TLS_SRP +OPTIONS_DEFAULT= CA_BUNDLE COOKIES HTTP2 OPENSSL PROXY RESOLV THREADED_RESOLVER TLS_SRP CA_BUNDLE_DESC= Install CA bundle for OpenSSL CA_BUNDLE_IMPLIES= OPENSSL COOKIES_DESC= Cookies support @@ -95,10 +95,10 @@ GSSAPI_MIT_LDFLAGS= ${GSSAPILDFLAGS} GSSAPI_MIT_LIBS= ${GSSAPILIBS} GSSAPI_MIT_USES= gssapi:mit GSSAPI_NONE_CONFIGURE_ON= --without-gssapi -HTTP2_BUILD_DEPENDS= nghttp2>=1.0.0:www/nghttp2 -HTTP2_CONFIGURE_WITH= nghttp2 -HTTP2_LIB_DEPENDS= libnghttp2.so:www/nghttp2 -HTTP2_RUN_DEPENDS= nghttp2>=1.0.0:www/nghttp2 +HTTP2_BUILD_DEPENDS= libnghttp2>=1.0.0:www/libnghttp2 +HTTP2_CONFIGURE_WITH= libnghttp2 +HTTP2_LIB_DEPENDS= libnghttp2.so:www/libnghttp2 +HTTP2_RUN_DEPENDS= libnghttp2>=1.0.0:www/libnghttp2 HTTP2_USES= pkgconfig IDN_CONFIGURE_WITH= libidn2 IDN_LIB_DEPENDS= libidn2.so:dns/libidn2 |