diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2018-05-04 22:06:41 +0300 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2018-05-04 22:22:34 +0300 |
commit | b973b43800f3114ed819fc32e3024bc7bbe0c0ed (patch) | |
tree | faafb5ed67d67b814b86e7cc7809ebcf25c82b7b /dev-libs/crypto++ | |
parent | sys-cluster/drbd-utils: Add missing sys/sysmacros.h include, bug 616758 (diff) | |
download | gentoo-b973b43800f3114ed819fc32e3024bc7bbe0c0ed.tar.gz gentoo-b973b43800f3114ed819fc32e3024bc7bbe0c0ed.tar.bz2 gentoo-b973b43800f3114ed819fc32e3024bc7bbe0c0ed.zip |
dev-libs/crypto++: remove cpu-flag USE
Closes: https://bugs.gentoo.org/654598
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'dev-libs/crypto++')
-rw-r--r-- | dev-libs/crypto++/crypto++-7.0.0-r2.ebuild (renamed from dev-libs/crypto++/crypto++-7.0.0-r1.ebuild) | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/dev-libs/crypto++/crypto++-7.0.0-r1.ebuild b/dev-libs/crypto++/crypto++-7.0.0-r2.ebuild index 850fe2a0c037..24273393bf5f 100644 --- a/dev-libs/crypto++/crypto++-7.0.0-r1.ebuild +++ b/dev-libs/crypto++/crypto++-7.0.0-r2.ebuild @@ -13,8 +13,6 @@ LICENSE="Boost-1.0" SLOT="0/7" # subslot is so version KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x64-macos" IUSE="+asm static-libs" -IUSE_CPU_FLAGS=" aes sse3 sse4_1 sse4_2" -IUSE+=" ${IUSE_CPU_FLAGS// / cpu_flags_x86_}" DEPEND="app-arch/unzip" @@ -29,10 +27,6 @@ pkg_setup() { src_compile() { use asm || append-cxxflags -DCRYPTOPP_DISABLE_ASM - use cpu_flags_x86_aes || append-cxxflags -DCRYPTOPP_DISABLE_AESNI - use cpu_flags_x86_sse3 || append-cxxflags -DCRYPTOPP_DISABLE_SSSE3 - use cpu_flags_x86_sse4_1 || append-cxxflags -DCRYPTOPP_DISABLE_SSE4 - use cpu_flags_x86_sse4_2 || append-cxxflags -DCRYPTOPP_DISABLE_SSE4 # ASM isn't Darwin/Mach-O ready, #479554, buildsys doesn't grok CPPFLAGS [[ ${CHOST} == *-darwin* ]] && append-cxxflags -DCRYPTOPP_DISABLE_ASM |