diff options
author | Philipp Rösner <rndxelement@protonmail.com> | 2022-05-31 22:08:05 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-06-11 06:18:16 +0100 |
commit | 4fd804270e83f7c6ee3ecc4de4a591c86cb885d4 (patch) | |
tree | 59065e4aa4e9470090748c1582710952e516fa84 /www-servers | |
parent | dev-libs/openssl-compat: tidy up; sync with openssl (diff) | |
download | gentoo-4fd804270e83f7c6ee3ecc4de4a591c86cb885d4.tar.gz gentoo-4fd804270e83f7c6ee3ecc4de4a591c86cb885d4.tar.bz2 gentoo-4fd804270e83f7c6ee3ecc4de4a591c86cb885d4.zip |
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@protonmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'www-servers')
-rw-r--r-- | www-servers/pound/pound-3.0.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
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}" |