Nghttp2 v1.42.0 This release includes security advisory. lib The UBSAN errors are now fixed. nghttp2_map is now backed by tree for storing collisions. doc Some clarifications are made for nghttp2_session_send function. build The missing cmake/FindSystemd.cmake has been added to the tar distribution.
31 lines
898 B
Makefile
31 lines
898 B
Makefile
# $NetBSD: Makefile,v 1.6 2020/11/26 13:51:51 adam Exp $
|
|
|
|
.include "../../www/nghttp2/Makefile.common"
|
|
|
|
PKGNAME= ${DISTNAME:S/-/-tools-/}
|
|
|
|
COMMENT= Tools for nghttp2
|
|
|
|
# Upstream documents that c++14 is required for C++ parts of the code;
|
|
# the base package does not use C++.
|
|
USE_LANGUAGES= c c++14
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake pkg-config
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-examples
|
|
CONFIGURE_ARGS+= --disable-python-bindings
|
|
CONFIGURE_ARGS+= --enable-app
|
|
CONFIGURE_ARGS+= --enable-hpack-tools
|
|
|
|
GCC_REQD+= 6
|
|
|
|
INSTALL_DIRS+= src
|
|
|
|
.include "../../devel/libev/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../net/libcares/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../textproc/jansson/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../www/nghttp2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|