From efd4e81c082cd6a97b2c85fa82a8cfe72adfa904 Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" Date: Sat, 19 Jan 2019 13:36:07 -0500 Subject: dev-libs/libsodium: add support on musl Signed-off-by: Anthony G. Basile Package-Manager: Portage-2.3.51, Repoman-2.3.11 --- dev-libs/libsodium/libsodium-1.0.16-r2.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'dev-libs/libsodium/libsodium-1.0.16-r2.ebuild') diff --git a/dev-libs/libsodium/libsodium-1.0.16-r2.ebuild b/dev-libs/libsodium/libsodium-1.0.16-r2.ebuild index 393a0f21ab8e..fe6573407753 100644 --- a/dev-libs/libsodium/libsodium-1.0.16-r2.ebuild +++ b/dev-libs/libsodium/libsodium-1.0.16-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -28,6 +28,10 @@ multilib_src_configure() { # --disable-pie is needed on x86, see bug #512734 if [[ "${MULTILIB_ABI_FLAG}" == "abi_x86_32" ]]; then myconf="${myconf} --disable-pie" + # --disable-ssp is needed on musl x86 + if use elibc_musl; then + myconf+="${myconf} --disable-ssp" + fi fi econf \ -- cgit v1.2.3-65-gdbad