diff options
author | Daniel Black <dragonheart@gentoo.org> | 2009-01-15 12:22:05 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2009-01-15 12:22:05 +0000 |
commit | d1f60a13042e0e84bba5cbb51e3c8c551fb9abed (patch) | |
tree | 4ffaf02efc5a8fb0ed3fb8c65d1949cf5424116d /dev-libs | |
parent | Remove old versions. (diff) | |
download | gentoo-2-d1f60a13042e0e84bba5cbb51e3c8c551fb9abed.tar.gz gentoo-2-d1f60a13042e0e84bba5cbb51e3c8c551fb9abed.tar.bz2 gentoo-2-d1f60a13042e0e84bba5cbb51e3c8c551fb9abed.zip |
remove alg_ia32 as per bug #253716 thanks Helmut Jarausch, Nickolay Kolchin-Semyonov et. al
(Portage version: 2.2_rc20/cvs/Linux 2.6.26-gentoo-r4 x86_64)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/botan/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/botan/botan-1.8.0.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/dev-libs/botan/ChangeLog b/dev-libs/botan/ChangeLog index 4c8ff5d8948b..36c647ebd72c 100644 --- a/dev-libs/botan/ChangeLog +++ b/dev-libs/botan/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/botan # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v 1.35 2009/01/03 12:30:15 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v 1.36 2009/01/15 12:22:05 dragonheart Exp $ + + 15 Jan 2009; Daniel Black <dragonheart@gentoo.org> botan-1.8.0.ebuild: + remove alg_ia32 as per bug #253716 thanks Helmut Jarausch, Nickolay + Kolchin-Semyonov et. al *botan-1.8.0 (03 Jan 2009) diff --git a/dev-libs/botan/botan-1.8.0.ebuild b/dev-libs/botan/botan-1.8.0.ebuild index 73d5fddf39f4..126a47d760aa 100644 --- a/dev-libs/botan/botan-1.8.0.ebuild +++ b/dev-libs/botan/botan-1.8.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.8.0.ebuild,v 1.5 2009/01/04 06:58:55 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.8.0.ebuild,v 1.6 2009/01/15 12:22:05 dragonheart Exp $ inherit eutils multilib toolchain-funcs @@ -46,9 +46,9 @@ src_compile() { # If we have assembly code for this machine, use it if [ "${ARCH}" = "x86" ]; then - modules="${modules},mp_ia32,alg_ia32" + modules="${modules},mp_ia32" #below is untested. - #modules="${modules},mp_ia32,alg_ia32,mulop_ia32,serpent_ia32,ia32_eng,md4_ia32,md5_ia32,sha1_ia32,asm_ia32" + #modules="${modules},mp_ia32,mulop_ia32,serpent_ia32,ia32_eng,md4_ia32,md5_ia32,sha1_ia32,asm_ia32" elif [ "${ARCH}" = "amd64" ]; then modules="${modules},mp_amd64" # monty_amd64 and mulop_amd64 had compile failures 20090103 Botan-1.8 |