diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2008-06-29 10:39:09 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2008-06-29 10:39:09 +0000 |
commit | a90c015ff24de188e32e09ae6c657757f3d2efb2 (patch) | |
tree | 589db14e56f312a045192c9b626d8450aff8e0b8 /media-gfx | |
parent | Add missing die: || "..." -> || die "..." (diff) | |
download | gentoo-2-a90c015ff24de188e32e09ae6c657757f3d2efb2.tar.gz gentoo-2-a90c015ff24de188e32e09ae6c657757f3d2efb2.tar.bz2 gentoo-2-a90c015ff24de188e32e09ae6c657757f3d2efb2.zip |
Fix for gcc-4.3. Thanks to sbriesen.
(Portage version: 2.2_rc1/cvs/Linux 2.6.25.8 i686)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/iscan/ChangeLog | 6 | ||||
-rw-r--r-- | media-gfx/iscan/files/iscan-2.11.0-gcc43.patch | 11 | ||||
-rw-r--r-- | media-gfx/iscan/iscan-2.11.0.ebuild | 3 |
3 files changed, 18 insertions, 2 deletions
diff --git a/media-gfx/iscan/ChangeLog b/media-gfx/iscan/ChangeLog index 79e92b62b2f4..6812b56a483d 100644 --- a/media-gfx/iscan/ChangeLog +++ b/media-gfx/iscan/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-gfx/iscan # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/iscan/ChangeLog,v 1.26 2008/05/14 23:16:49 sbriesen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/iscan/ChangeLog,v 1.27 2008/06/29 10:39:09 loki_val Exp $ + + 29 Jun 2008; Peter Alfredsen <loki_val@gentoo.org> + +files/iscan-2.11.0-gcc43.patch, iscan-2.11.0.ebuild: + Fix for gcc-4.3. Thanks to sbriesen. *iscan-2.11.0 (14 May 2008) diff --git a/media-gfx/iscan/files/iscan-2.11.0-gcc43.patch b/media-gfx/iscan/files/iscan-2.11.0-gcc43.patch new file mode 100644 index 000000000000..4766a1c7b7aa --- /dev/null +++ b/media-gfx/iscan/files/iscan-2.11.0-gcc43.patch @@ -0,0 +1,11 @@ +--- frontend/pisa_view_manager.h.orig 2008-06-11 15:02:57.215502256 +0200 ++++ frontend/pisa_view_manager.h 2008-06-11 15:03:10.813875095 +0200 +@@ -48,6 +48,8 @@ + + #include "file-selector.h" + ++#include <string.h> ++ + class view_manager + { + public: diff --git a/media-gfx/iscan/iscan-2.11.0.ebuild b/media-gfx/iscan/iscan-2.11.0.ebuild index c02b61c3ccee..ac5628461466 100644 --- a/media-gfx/iscan/iscan-2.11.0.ebuild +++ b/media-gfx/iscan/iscan-2.11.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/iscan/iscan-2.11.0.ebuild,v 1.1 2008/05/14 23:16:49 sbriesen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/iscan/iscan-2.11.0.ebuild,v 1.2 2008/06/29 10:39:09 loki_val Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -198,6 +198,7 @@ src_unpack() { sed -i -e 's:iscan.1::g' doc/Makefile* fi + epatch "${FILESDIR}"/${P}-gcc43.patch # autotool stuff eautoconf } |