diff options
Diffstat (limited to 'dev-lang/tcl')
-rw-r--r-- | dev-lang/tcl/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/tcl/tcl-8.5.7.ebuild | 9 |
2 files changed, 11 insertions, 3 deletions
diff --git a/dev-lang/tcl/ChangeLog b/dev-lang/tcl/ChangeLog index d74e1551bf51..ad2199b3adef 100644 --- a/dev-lang/tcl/ChangeLog +++ b/dev-lang/tcl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/tcl # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcl/ChangeLog,v 1.105 2009/04/17 18:56:08 mescalinum Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcl/ChangeLog,v 1.106 2009/08/10 15:53:53 mescalinum Exp $ + + 10 Aug 2009; Federico Ferri <mescalinum@gentoo.org> tcl-8.5.7.ebuild: + fix bug #280934 - tcl stack check issue on hppa *tcl-8.5.7 (17 Apr 2009) diff --git a/dev-lang/tcl/tcl-8.5.7.ebuild b/dev-lang/tcl/tcl-8.5.7.ebuild index 39b54c25280c..41efb9bb9500 100644 --- a/dev-lang/tcl/tcl-8.5.7.ebuild +++ b/dev-lang/tcl/tcl-8.5.7.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcl/tcl-8.5.7.ebuild,v 1.1 2009/04/17 18:56:08 mescalinum Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcl/tcl-8.5.7.ebuild,v 1.2 2009/08/10 15:53:53 mescalinum Exp $ WANT_AUTOCONF=latest WANT_AUTOMAKE=latest -inherit autotools eutils multilib toolchain-funcs +inherit autotools eutils flag-o-matic multilib toolchain-funcs MY_P="${PN}${PV/_beta/b}" DESCRIPTION="Tool Command Language" @@ -21,6 +21,11 @@ DEPEND="" S="${WORKDIR}/${MY_P}" +if use hppa; then + # workaround stack check issues, bug #280934 + append-cflags -DTCL_NO_STACK_CHECK=1 +fi + pkg_setup() { if use threads ; then ewarn "" |