diff options
author | Federico Ferri <mescalinum@gentoo.org> | 2009-06-07 17:42:25 +0000 |
---|---|---|
committer | Federico Ferri <mescalinum@gentoo.org> | 2009-06-07 17:42:25 +0000 |
commit | 83e0bbf2e7d090a65ea798f2841c2c34049cbc7b (patch) | |
tree | 23b32490b2cf88e96dbce797794ca644534eb3f2 /dev-tcltk/expect/expect-5.43.0.ebuild | |
parent | Add ~arm/~s390 (diff) | |
download | gentoo-2-83e0bbf2e7d090a65ea798f2841c2c34049cbc7b.tar.gz gentoo-2-83e0bbf2e7d090a65ea798f2841c2c34049cbc7b.tar.bz2 gentoo-2-83e0bbf2e7d090a65ea798f2841c2c34049cbc7b.zip |
fix implicit missing declarations for 5.43.0 too
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'dev-tcltk/expect/expect-5.43.0.ebuild')
-rw-r--r-- | dev-tcltk/expect/expect-5.43.0.ebuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/dev-tcltk/expect/expect-5.43.0.ebuild b/dev-tcltk/expect/expect-5.43.0.ebuild index d2038679471a..110d9ca45215 100644 --- a/dev-tcltk/expect/expect-5.43.0.ebuild +++ b/dev-tcltk/expect/expect-5.43.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.43.0.ebuild,v 1.10 2008/12/08 14:08:02 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.43.0.ebuild,v 1.11 2009/06/07 17:42:25 mescalinum Exp $ WANT_AUTOCONF="2.1" inherit autotools eutils @@ -48,6 +48,9 @@ src_unpack() { sed -i -e 's/^\(#include <stdio\.h>\)/\1\n#include "expect_cf.h"/' \ Dbg.c + # fix implicit missing declarations (bug 204878) + epatch "${FILESDIR}"/"${P}"-missing-includes.patch + eautoconf } |