1.44.0: nghttpx The bug which prevents a backend which is excluded from a load balancing group temporarily from being restored. The word master is replaced main. The nghttpx master process is now called main process. --no-http2-cipher-black-list and --client-no-http2-cipher-black-list are deprecated and replaced with --no-http2-cipher-block-list and --client-no-http2-cipher-block-list respectively. Remove trailing white space after $method log variable. h2load --rps option has been added. The time unit (e.g., ms) is now allowed in -D option.
23 lines
637 B
Makefile
23 lines
637 B
Makefile
# $NetBSD: Makefile,v 1.70 2021/07/19 11:04:50 adam Exp $
|
|
|
|
.include "Makefile.common"
|
|
|
|
COMMENT= Implementation of HTTP/2 in C
|
|
|
|
# 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+= --enable-lib-only
|
|
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"
|