diff options
author | Fabian Groffen <grobian@gentoo.org> | 2012-03-02 21:17:03 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2012-03-02 21:17:03 +0000 |
commit | ab5a27e50a767eb2664010babfb23837a36616de (patch) | |
tree | 2dfadec0eea8d6d72173396039360aaeb7acf069 /net-libs | |
parent | Marking libtirpc-0.2.2-r1 ppc64 for bug 394979 (diff) | |
download | gentoo-2-ab5a27e50a767eb2664010babfb23837a36616de.tar.gz gentoo-2-ab5a27e50a767eb2664010babfb23837a36616de.tar.bz2 gentoo-2-ab5a27e50a767eb2664010babfb23837a36616de.zip |
Make sure neon links against -lintl on Solaris with USE=nls, because it needs it.
(Portage version: 2.2.01.20153-prefix/cvs/SunOS i386)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/neon/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/neon/neon-0.29.6.ebuild | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/net-libs/neon/ChangeLog b/net-libs/neon/ChangeLog index 781407a323f5..78324faec135 100644 --- a/net-libs/neon/ChangeLog +++ b/net-libs/neon/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/neon # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.28 2012/03/02 21:07:32 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.29 2012/03/02 21:17:03 grobian Exp $ + + 02 Mar 2012; Fabian Groffen <grobian@gentoo.org> neon-0.29.6.ebuild: + Make sure neon links against -lintl on Solaris with USE=nls, because it needs + it. 02 Mar 2012; Fabian Groffen <grobian@gentoo.org> neon-0.29.6.ebuild: Fix ca-bundle path for Prefix diff --git a/net-libs/neon/neon-0.29.6.ebuild b/net-libs/neon/neon-0.29.6.ebuild index 0d22795907b9..f89b62b91b46 100644 --- a/net-libs/neon/neon-0.29.6.ebuild +++ b/net-libs/neon/neon-0.29.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.9 2012/03/02 21:07:32 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.10 2012/03/02 21:17:03 grobian Exp $ EAPI="3" @@ -71,6 +71,9 @@ src_configure() { myconf+=" --with-ssl=openssl" fi + # work around broken check, we really need -lintl on Solaris + [[ ${CHOST} == *-solaris* ]] && export ne_cv_libsfor_bindtextdomain=-lintl + econf \ --enable-shared \ $(use_with kerberos gssapi) \ |