diff options
author | Michael Januszewski <spock@gentoo.org> | 2007-03-27 13:08:50 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2007-03-27 13:08:50 +0000 |
commit | 9817239a456dd67072d8526817f148bce3a88c9b (patch) | |
tree | 7e4a390c3681d68ee4301736cc69f11cc190f9df /media-gfx/fbida | |
parent | Fixed improper doc file name which borked the install (bug #172393). (diff) | |
download | gentoo-2-9817239a456dd67072d8526817f148bce3a88c9b.tar.gz gentoo-2-9817239a456dd67072d8526817f148bce3a88c9b.tar.bz2 gentoo-2-9817239a456dd67072d8526817f148bce3a88c9b.zip |
Remove unused #include in fbtools.c (bug #171927).
(Portage version: 2.1.2.2)
Diffstat (limited to 'media-gfx/fbida')
-rw-r--r-- | media-gfx/fbida/ChangeLog | 6 | ||||
-rw-r--r-- | media-gfx/fbida/fbida-2.05.ebuild | 4 | ||||
-rw-r--r-- | media-gfx/fbida/files/fbida-2.05-asmpage-fix.patch | 12 |
3 files changed, 20 insertions, 2 deletions
diff --git a/media-gfx/fbida/ChangeLog b/media-gfx/fbida/ChangeLog index eb1e7d916596..5509c5f9d8e3 100644 --- a/media-gfx/fbida/ChangeLog +++ b/media-gfx/fbida/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-gfx/fbida # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/fbida/ChangeLog,v 1.27 2007/03/04 16:06:33 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/fbida/ChangeLog,v 1.28 2007/03/27 13:08:50 spock Exp $ + + 27 Mar 2007; Michał Januszewski <spock@gentoo.org> + +files/fbida-2.05-asmpage-fix.patch, fbida-2.05.ebuild: + Remove unused #include in fbtools.c (bug #171927). 04 Mar 2007; Michał Januszewski <spock@gentoo.org> fbida-2.03-r4.ebuild, fbida-2.05.ebuild: diff --git a/media-gfx/fbida/fbida-2.05.ebuild b/media-gfx/fbida/fbida-2.05.ebuild index a314032c68af..190de7ead1a4 100644 --- a/media-gfx/fbida/fbida-2.05.ebuild +++ b/media-gfx/fbida/fbida-2.05.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/fbida/fbida-2.05.ebuild,v 1.3 2007/03/04 16:06:33 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/fbida/fbida-2.05.ebuild,v 1.4 2007/03/27 13:08:50 spock Exp $ inherit eutils toolchain-funcs @@ -42,6 +42,8 @@ src_unpack() { if [[ `gcc-major-version` -lt 4 ]]; then sed -e 's/-Wno-pointer-sign//' -i ${S}/GNUmakefile fi + + epatch ${FILESDIR}/fbida-2.05-asmpage-fix.patch } src_compile() { diff --git a/media-gfx/fbida/files/fbida-2.05-asmpage-fix.patch b/media-gfx/fbida/files/fbida-2.05-asmpage-fix.patch new file mode 100644 index 000000000000..d48d4eb8700a --- /dev/null +++ b/media-gfx/fbida/files/fbida-2.05-asmpage-fix.patch @@ -0,0 +1,12 @@ +diff -Naurp fbida-2.05-orig/fbtools.c fbida-2.05/fbtools.c +--- fbida-2.05-orig/fbtools.c 2007-03-27 15:02:08.000000000 +0200 ++++ fbida-2.05/fbtools.c 2007-03-27 15:02:56.000000000 +0200 +@@ -21,8 +21,6 @@ + #include <linux/vt.h> + #include <linux/fb.h> + +-#include <asm/page.h> +- + #include "fbtools.h" + + /* -------------------------------------------------------------------- */ |