41c373fc96
Nghttp2 v1.52.0 doc sphinx_rtd_theme has been removed from the repository and archive. build The following dependencies have been updated: ngtcp2 nghttp3 OpenSSL(quictls) BoringSSL libbpf CMake build now checks core and extra components to find libevent. python The deprecated Python bindings has been removed. libnghttp2_asio The deprecated libnghttp2_asio has been removed. third-party llhttp and neverbleed have been updated. nghttpx This release fixes the bug that stalls TLS connection. integration This release adds more http3 integration tests.
25 lines
671 B
Makefile
25 lines
671 B
Makefile
# $NetBSD: Makefile,v 1.78 2023/02/15 18:08:24 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
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
REPLACE_PYTHON+= script/fetch-ocsp-response
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|