diff options
-rw-r--r-- | dev-libs/libgcrypt/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/libgcrypt/libgcrypt-1.6.1-r1.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/dev-libs/libgcrypt/ChangeLog b/dev-libs/libgcrypt/ChangeLog index 2a24b07bc467..d2ebb21590e4 100644 --- a/dev-libs/libgcrypt/ChangeLog +++ b/dev-libs/libgcrypt/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/libgcrypt # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/ChangeLog,v 1.205 2014/03/01 18:49:18 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/ChangeLog,v 1.206 2014/04/30 08:20:06 grobian Exp $ + + 30 Apr 2014; Fabian Groffen <grobian@gentoo.org> libgcrypt-1.6.1-r1.ebuild: + Apply as --divide fix for Intel-based Solaris only to unbreak Sparc-based 01 Mar 2014; Michał Górny <mgorny@gentoo.org> libgcrypt-1.5.3-r100.ebuild: Disable static libs in the compat slot, bug #503146. diff --git a/dev-libs/libgcrypt/libgcrypt-1.6.1-r1.ebuild b/dev-libs/libgcrypt/libgcrypt-1.6.1-r1.ebuild index 617e4bc4e0dd..d317a418d1bf 100644 --- a/dev-libs/libgcrypt/libgcrypt-1.6.1-r1.ebuild +++ b/dev-libs/libgcrypt/libgcrypt-1.6.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/libgcrypt-1.6.1-r1.ebuild,v 1.2 2014/03/01 12:01:07 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/libgcrypt-1.6.1-r1.ebuild,v 1.3 2014/04/30 08:20:06 grobian Exp $ EAPI=5 AUTOTOOLS_AUTORECONF=1 @@ -37,7 +37,7 @@ MULTILIB_CHOST_TOOLS=( ) multilib_src_configure() { - if [[ ${CHOST} == *-solaris* ]] ; then + if [[ ${CHOST} == *86*-solaris* ]] ; then # ASM code uses GNU ELF syntax, divide in particular, we need to # allow this via ASFLAGS, since we don't have a flag-o-matic # function for that, we'll have to abuse cflags for this |