diff options
author | 2024-04-29 09:13:45 +0200 | |
---|---|---|
committer | 2024-04-29 09:13:45 +0200 | |
commit | 2d6a77b5adaa5160199e3b4de2cf754aa8717c9e (patch) | |
tree | 8b7bb930cbe999314755028db8ed91a9a6b011a3 /net-libs | |
parent | net-libs/nghttp2: drop 1.57.0, 1.58.0, 1.59.0, 1.60.0 (diff) | |
download | gentoo-2d6a77b5adaa5160199e3b4de2cf754aa8717c9e.tar.gz gentoo-2d6a77b5adaa5160199e3b4de2cf754aa8717c9e.tar.bz2 gentoo-2d6a77b5adaa5160199e3b4de2cf754aa8717c9e.zip |
net-libs/nghttp2: sync live ebuild
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/nghttp2/nghttp2-9999.ebuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/net-libs/nghttp2/nghttp2-9999.ebuild b/net-libs/nghttp2/nghttp2-9999.ebuild index e999a44f221f..4ff41e17c664 100644 --- a/net-libs/nghttp2/nghttp2-9999.ebuild +++ b/net-libs/nghttp2/nghttp2-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -29,23 +29,25 @@ RDEPEND=" ) systemd? ( >=sys-apps/systemd-209 ) xml? ( >=dev-libs/libxml2-2.7.7:2[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} - test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )" +DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" multilib_src_configure() { + #TODO: enable HTTP3 + #requires quictls/openssl, libngtcp2, libngtcp2_crypto_quictls, libnghttp3 local mycmakeargs=( -DENABLE_EXAMPLES=OFF -DENABLE_FAILMALLOC=OFF + -DENABLE_HTTP3=OFF -DENABLE_WERROR=OFF -DENABLE_THREADS=ON -DENABLE_DEBUG=$(usex debug) -DENABLE_HPACK_TOOLS=$(multilib_native_usex hpack-tools) $(cmake_use_find_package hpack-tools Jansson) -DWITH_JEMALLOC=$(multilib_native_usex jemalloc) - -DENABLE_STATIC_LIB=$(usex static-libs) + -DBUILD_STATIC_LIBS=$(usex static-libs) + -DBUILD_TESTING=$(usex test) $(cmake_use_find_package systemd Systemd) - $(cmake_use_find_package test CUnit) -DENABLE_APP=$(multilib_native_usex utils) -DWITH_LIBXML2=$(multilib_native_usex xml) ) |