diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-09-24 05:30:47 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-09-24 05:30:47 +0000 |
commit | 71ed17fcf507cfeed9eebe3d20ad3d8752310c6c (patch) | |
tree | 11fb592b7266cadc12766359a74dbb0ca449843d /app-text | |
parent | add support for user specified compiler (diff) | |
download | gentoo-2-71ed17fcf507cfeed9eebe3d20ad3d8752310c6c.tar.gz gentoo-2-71ed17fcf507cfeed9eebe3d20ad3d8752310c6c.tar.bz2 gentoo-2-71ed17fcf507cfeed9eebe3d20ad3d8752310c6c.zip |
Fixes stdc++ linking issue. Closes #3876
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/sablotron/ChangeLog | 6 | ||||
-rw-r--r-- | app-text/sablotron/sablotron-0.95-r1.ebuild | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/app-text/sablotron/ChangeLog b/app-text/sablotron/ChangeLog index ce7945d9220a..faf81ad1b8c1 100644 --- a/app-text/sablotron/ChangeLog +++ b/app-text/sablotron/ChangeLog @@ -1,9 +1,13 @@ # ChangeLog for app-text/sablotron # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-text/sablotron/ChangeLog,v 1.5 2002/08/05 15:42:42 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/sablotron/ChangeLog,v 1.6 2002/09/24 05:30:47 rphillips Exp $ *sablotron-0.95-r1 (13 Jul 2002) + 23 Sep 2002; Ryan Phillips <rphillips@gentoo.org> sablotron-0.95-r1.ebuild : + + Fixed stdc++ linking issue; #3876 + 05 Aug 2002; Seemant Kulleen <seemant@gentoo.org> sablotron-0.95-r1.ebuild : Fallsafe: emake || make || die. From bug #6041 by shadow@ines.ro diff --git a/app-text/sablotron/sablotron-0.95-r1.ebuild b/app-text/sablotron/sablotron-0.95-r1.ebuild index 1e798b0e29b7..b8fcf28da2bd 100644 --- a/app-text/sablotron/sablotron-0.95-r1.ebuild +++ b/app-text/sablotron/sablotron-0.95-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-text/sablotron/sablotron-0.95-r1.ebuild,v 1.6 2002/08/26 12:21:18 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/sablotron/sablotron-0.95-r1.ebuild,v 1.7 2002/09/24 05:30:47 rphillips Exp $ MY_P="Sablot-${PV}" S=${WORKDIR}/${MY_P} @@ -26,6 +26,10 @@ src_compile() { use perl && myconf="--enable-perlconnect" + # rphillips + # fixes bug #3876 + export LDFLAGS="-lstdc++" + econf ${myconf} || die make || die } |