diff options
author | Sam James <sam@gentoo.org> | 2023-01-26 05:10:54 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-01-26 05:10:54 +0000 |
commit | 96c22f3e99772247a35c0fd725729d9fad733f57 (patch) | |
tree | 517cd554fd5470e25c67a1cc058f334291403e7b /eclass | |
parent | apache-2.eclass: add missing subslot deps (diff) | |
download | gentoo-96c22f3e99772247a35c0fd725729d9fad733f57.tar.gz gentoo-96c22f3e99772247a35c0fd725729d9fad733f57.tar.bz2 gentoo-96c22f3e99772247a35c0fd725729d9fad733f57.zip |
apache-2.eclass: adjust NGHTTP2_VERSION for newer versions
2.4.55 needs >=net-libs/nghttp2-1.50.0.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/apache-2.eclass | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/eclass/apache-2.eclass b/eclass/apache-2.eclass index 17ffac663a39..e68642bf2e7c 100644 --- a/eclass/apache-2.eclass +++ b/eclass/apache-2.eclass @@ -138,6 +138,11 @@ _apache2_set_mpms() { _apache2_set_mpms unset -f _apache2_set_mpms +NGHTTP2_VERSION=1.2.1 +if ver_test ${PV} -ge 2.4.55 ; then + NGHTTP2_VERSION=1.50.0 +fi + # Dependencies RDEPEND=" acct-group/apache @@ -149,14 +154,14 @@ RDEPEND=" apache2_modules_brotli? ( >=app-arch/brotli-0.6.0:= ) apache2_modules_deflate? ( sys-libs/zlib ) apache2_modules_http2? ( - >=net-libs/nghttp2-1.2.1:= + >=net-libs/nghttp2-${NGHTTP2_VERSION}:= kernel_linux? ( sys-apps/util-linux ) ) apache2_modules_lua? ( ${LUA_DEPS} ) apache2_modules_md? ( >=dev-libs/jansson-2.10:= ) apache2_modules_mime? ( app-misc/mime-types ) apache2_modules_proxy_http2? ( - >=net-libs/nghttp2-1.2.1:= + >=net-libs/nghttp2-${NGHTTP2_VERSION}:= kernel_linux? ( sys-apps/util-linux ) ) apache2_modules_session_crypto? ( |