- lib: Ignore all input after calling session_terminate_session - lib: Fix treatment of padding - lib: Don't allow 101 HTTP status code because HTTP/2 removes HTTP Upgrade - build: add ENABLE_STATIC_LIB option to build static lib - third-party: Upgrade neverbleed to the latest master - asio: Support client side SNI - src: Compile with libressl 2.7.2 - src: Allow building without NPN - h2load: -r and --duration are mutually exclusive
30 lines
783 B
Makefile
30 lines
783 B
Makefile
# $NetBSD: Makefile,v 1.39 2018/06/14 10:51:21 fhajny Exp $
|
|
|
|
DISTNAME= nghttp2-1.32.0
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=tatsuhiro-t/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://nghttp2.org/
|
|
COMMENT= Implementation of HTTP/2 in C
|
|
LICENSE= mit
|
|
|
|
GITHUB_RELEASE= v${PKGVERSION_NOREV}
|
|
|
|
USE_LANGUAGES= c 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"
|