commit: 4fd804270e83f7c6ee3ecc4de4a591c86cb885d4 Author: Philipp Rösner <rndxelement <AT> protonmail <DOT> com> AuthorDate: Tue May 31 20:08:05 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Jun 11 05:18:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fd80427
www-servers/pound: fix build with musl Building of www-servers/pound on musl wasn't possible due to a missing header file 'queue.h'. Adding sys-libs/queue-standalone as a dependency guarded by the elibc_musl USE_EXPAND flag fixes the issue. Closes: https://bugs.gentoo.org/833031 Signed-off-by: Philipp Rösner <rndxelement <AT> protonmail.com> Signed-off-by: Sam James <sam <AT> gentoo.org> www-servers/pound/pound-3.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www-servers/pound/pound-3.0.ebuild b/www-servers/pound/pound-3.0.ebuild index 449b52b0ebae..0279aa5ca978 100644 --- a/www-servers/pound/pound-3.0.ebuild +++ b/www-servers/pound/pound-3.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -21,6 +21,7 @@ DEPEND=" dev-libs/nanomsg:= dev-libs/openssl:= net-libs/mbedtls:= + elibc_musl? ( sys-libs/queue-standalone ) " RDEPEND="${DEPEND}"
