diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2005-08-08 21:39:05 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2005-08-08 21:39:05 +0000 |
commit | 4124ded98b1f23dbee86fb2d06464ce513f0ca79 (patch) | |
tree | a149b8591f6c835afab20717e426b03d617d5dd1 /sys-apps/vbetool/files | |
parent | Stable on alpha. (diff) | |
download | gentoo-2-4124ded98b1f23dbee86fb2d06464ce513f0ca79.tar.gz gentoo-2-4124ded98b1f23dbee86fb2d06464ce513f0ca79.tar.bz2 gentoo-2-4124ded98b1f23dbee86fb2d06464ce513f0ca79.zip |
Bug #101449, version bump.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sys-apps/vbetool/files')
-rw-r--r-- | sys-apps/vbetool/files/digest-vbetool-0.3 | 1 | ||||
-rw-r--r-- | sys-apps/vbetool/files/vbetool-0.3-pci-compile-fix.patch | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/sys-apps/vbetool/files/digest-vbetool-0.3 b/sys-apps/vbetool/files/digest-vbetool-0.3 new file mode 100644 index 000000000000..06c7b269e648 --- /dev/null +++ b/sys-apps/vbetool/files/digest-vbetool-0.3 @@ -0,0 +1 @@ +MD5 9bfcf158b2893d1094248db467a0d825 vbetool_0.3-1.tar.gz 92194 diff --git a/sys-apps/vbetool/files/vbetool-0.3-pci-compile-fix.patch b/sys-apps/vbetool/files/vbetool-0.3-pci-compile-fix.patch new file mode 100644 index 000000000000..26e3cc9e7525 --- /dev/null +++ b/sys-apps/vbetool/files/vbetool-0.3-pci-compile-fix.patch @@ -0,0 +1,28 @@ +diff -Nuar vbetool-0.3.orig/vbetool.c vbetool-0.3/vbetool.c +--- vbetool-0.3.orig/vbetool.c 2005-03-01 17:39:21.000000000 -0800 ++++ vbetool-0.3/vbetool.c 2005-08-08 14:36:01.000000000 -0700 +@@ -8,18 +8,18 @@ + version 2 + */ + +-#include <pci/pci.h> +-#include <assert.h> +-#include <stdio.h> +-#include <stdlib.h> +-#include <string.h> +-#include <unistd.h> + #include <sys/ioctl.h> + #include <sys/types.h> + #include <sys/io.h> + #include <sys/kd.h> + #include <sys/stat.h> + #include <errno.h> ++#include <assert.h> ++#include <stdio.h> ++#include <stdlib.h> ++#include <string.h> ++#include <unistd.h> ++#include <pci/pci.h> + + #include "lrmi.h" + #include "vbetool.h" |