diff options
author | Sam James <sam@gentoo.org> | 2021-11-21 11:51:17 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-11-21 11:51:17 +0000 |
commit | b03f30ebfc63de6d608cc2181a5918007c91bdf5 (patch) | |
tree | 78b43d0303d46c8d795a8c89e50268309064c809 /dev-libs/libsodium | |
parent | profiles/default/linux/x86/17.0/musl: unmask SSP (diff) | |
download | gentoo-b03f30ebfc63de6d608cc2181a5918007c91bdf5.tar.gz gentoo-b03f30ebfc63de6d608cc2181a5918007c91bdf5.tar.bz2 gentoo-b03f30ebfc63de6d608cc2181a5918007c91bdf5.zip |
dev-libs/libsodium: drop obsolete musl SSP workaround
Bug: https://bugs.gentoo.org/747346
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/libsodium')
-rw-r--r-- | dev-libs/libsodium/libsodium-1.0.18_p20210617.ebuild | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/dev-libs/libsodium/libsodium-1.0.18_p20210617.ebuild b/dev-libs/libsodium/libsodium-1.0.18_p20210617.ebuild index 4e6e0079f8c7..959d0c871f7b 100644 --- a/dev-libs/libsodium/libsodium-1.0.18_p20210617.ebuild +++ b/dev-libs/libsodium/libsodium-1.0.18_p20210617.ebuild @@ -79,14 +79,9 @@ multilib_src_configure() { ) # --disable-pie is needed on x86, see bug #512734 + # TODO: Check if still needed? if [[ "${MULTILIB_ABI_FLAG}" == "abi_x86_32" ]] ; then myeconfargs+=( --disable-pie ) - - # --disable-ssp is needed on musl x86 - # TODO: Check if still needed? bug #747346 - if use elibc_musl ; then - myeconfargs+=( --disable-ssp ) - fi fi ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" |