32f5c8b6b4
nghttp2 v1.40.0 lib: Add nghttp2_check_authority as public API (GH-1413) lib: Fix the bug that stream is closed with wrong error code (GH-1408) lib: Faster huffman encoding and decoding (GH-1405) build: Avoid filename collision of static and dynamic lib (Patch from William A Rowe Jr) (GH-1394) build: Add new flag ENABLE_STATIC_CRT for Windows (Patch from William A Rowe Jr) (GH-1393) build: cmake: Support building nghttpx with systemd (Patch from Andrew Penkrat) (GH-1377) third-party: Update neverbleed to fix memory leak nghttpx: Fix bug that mruby is incorrectly shared between backends (GH-1392) nghttpx: Reconnect h1 backend if it lost connection before sending headers nghttpx: Returns 408 if backend timed out before sending headers nghttpx: Fix request stall (GH-1378)
31 lines
884 B
Makefile
31 lines
884 B
Makefile
# $NetBSD: Makefile,v 1.57 2019/11/20 16:38:22 adam Exp $
|
|
|
|
DISTNAME= nghttp2-1.40.0
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=tatsuhiro-t/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
GITHUB_RELEASE= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://nghttp2.org/
|
|
COMMENT= Implementation of HTTP/2 in C
|
|
LICENSE= mit
|
|
|
|
# Upstream documents that c++14 is required for C++ parts of the code;
|
|
# the base package does not use C++.
|
|
USE_LANGUAGES= c
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake pkg-config
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-examples
|
|
CONFIGURE_ARGS+= --disable-python-bindings
|
|
PKGCONFIG_OVERRIDE+= lib/libnghttp2.pc.in
|
|
PKGCONFIG_OVERRIDE+= src/libnghttp2_asio.pc.in
|
|
|
|
REPLACE_PYTHON+= script/fetch-ocsp-response
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|