Changes: 7.65.1 ------ This release includes the following bugfixes: o CURLOPT_LOW_SPEED_* repaired o NTLM: reset proxy "multipass" state when CONNECT request is done o PolarSSL: deprecate support step 1. Removed from configure o appveyor: add Visual Studio solution build o cmake: check for if_nametoindex() o cmake: support CMAKE_OSX_ARCHITECTURES when detecting SIZEOF variables o config-win32: add support for if_nametoindex and getsockname o conncache: Remove the DEBUGASSERT on length check o conncache: make "bundles" per host name when doing proxy tunnels o curl-win32.h: Enable Unix Domain Sockets based on the Windows SDK version o curl_share_setopt.3: improve wording o dump-header.d: spell out that no headers == empty file o example/http2-download: fix format specifier o examples: cleanups and compiler warning fixes o http2: Stop drain from being permanently set o http: don't parse body-related headers in bodyless responses o md4: build correctly with openssl without MD4 o md4: include the mbedtls config.h to get the MD4 info o multi: track users of a socket better o nss: allow to specify TLS 1.3 ciphers if supported by NSS o parse_proxy: make sure portptr is initialized o parse_proxy: use the IPv6 zone id if given o sectransp: handle errSSLPeerAuthCompleted from SSLRead() o singlesocket: use separate variable for inner loop o ssl: Update outdated "openssl-only" comments for supported backends o tests: add HAProxy keywords o tests: add support to test against OpenSSH for Windows o tests: make test 1420 and 1406 work with rtsp-disabled libcurl o tls13-docs: mention it is only for OpenSSL >= 1.1.1 o tool_parse_cfg: Avoid 2 fopen() for WIN32 o tool_setopt: for builds with disabled-proxy, skip all proxy setopts() o url: Load if_nametoindex() dynamically from iphlpapi.dll on Windows o url: fix bad feature-disable #ifdef o url: use correct port in ConnectionExists() o winbuild: Use two space indentation
38 lines
1,004 B
Makefile
38 lines
1,004 B
Makefile
# $NetBSD: Makefile,v 1.210 2019/06/05 18:10:54 leot Exp $
|
|
|
|
DISTNAME= curl-7.65.1
|
|
CATEGORIES= www
|
|
MASTER_SITES= https://curl.haxx.se/download/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= leot@NetBSD.org
|
|
HOMEPAGE= https://curl.haxx.se/
|
|
COMMENT= Client that groks URLs
|
|
# not completely, but near enough
|
|
LICENSE= mit
|
|
|
|
BUILD_DEFS+= IPV6_READY
|
|
|
|
USE_TOOLS+= nroff perl
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-ssl=${BUILDLINK_PREFIX.openssl}
|
|
CONFIGURE_ARGS+= --with-ca-path=${SSLCERTS}
|
|
CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib}
|
|
PKGCONFIG_OVERRIDE= libcurl.pc.in
|
|
TEST_TARGET= check
|
|
|
|
INSTALLATION_DIRS= share/doc/curl
|
|
|
|
.include "options.mk"
|
|
|
|
post-install:
|
|
.for f in TheArtOfHttpScripting FAQ
|
|
${INSTALL_DATA} ${WRKSRC}/docs/${f} ${DESTDIR}${PREFIX}/share/doc/curl/
|
|
.endfor
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|