diff options
author | Fabian Groffen <grobian@gentoo.org> | 2012-09-03 19:25:39 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2012-09-03 19:25:39 +0000 |
commit | aaef7a1852c2ef7cbfb17e2dd820e858af68cc40 (patch) | |
tree | a6c7692ffaffbc7958dd9194d68cb5a017b5a1b0 /dev-vcs | |
parent | Bump to version 2.9.0. Blocking latest libf2c because it currently causes a b... (diff) | |
download | gentoo-2-aaef7a1852c2ef7cbfb17e2dd820e858af68cc40.tar.gz gentoo-2-aaef7a1852c2ef7cbfb17e2dd820e858af68cc40.tar.bz2 gentoo-2-aaef7a1852c2ef7cbfb17e2dd820e858af68cc40.zip |
Fix linking on Solaris with USE=nls
(Portage version: 2.2.01.20894-prefix/cvs/SunOS i386)
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/subversion/ChangeLog | 5 | ||||
-rw-r--r-- | dev-vcs/subversion/subversion-1.7.6.ebuild | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/dev-vcs/subversion/ChangeLog b/dev-vcs/subversion/ChangeLog index 8e6e51b5ba49..d8d1f9d4fa6b 100644 --- a/dev-vcs/subversion/ChangeLog +++ b/dev-vcs/subversion/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-vcs/subversion # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/subversion/ChangeLog,v 1.82 2012/08/22 20:33:10 tommy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/subversion/ChangeLog,v 1.83 2012/09/03 19:25:39 grobian Exp $ + + 03 Sep 2012; Fabian Groffen <grobian@gentoo.org> subversion-1.7.6.ebuild: + Fix linking on Solaris with USE=nls 22 Aug 2012; Thomas Sachau (Tommy[D]) <tommy@gentoo.org> subversion-1.7.6.ebuild, +files/subversion-1.7.6-kwallet.patch: diff --git a/dev-vcs/subversion/subversion-1.7.6.ebuild b/dev-vcs/subversion/subversion-1.7.6.ebuild index 9a4423762b33..0afcde2ef636 100644 --- a/dev-vcs/subversion/subversion-1.7.6.ebuild +++ b/dev-vcs/subversion/subversion-1.7.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/dev-vcs/subversion/subversion-1.7.6.ebuild,v 1.3 2012/08/22 20:33:10 tommy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/subversion/subversion-1.7.6.ebuild,v 1.4 2012/09/03 19:25:39 grobian Exp $ EAPI="3" SUPPORT_PYTHON_ABIS="1" @@ -158,6 +158,10 @@ src_configure() { # loader crashes on the LD_PRELOADs... myconf+=" --disable-local-library-preloading" ;; + *-solaris*) + # need -lintl to link + use nls && append-libs intl + ;; esac #workaround for bug 387057 |