diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2004-07-23 13:23:04 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2004-07-23 13:23:04 +0000 |
commit | 733cabbbfc770c535dba30953a85f48fa73bce76 (patch) | |
tree | 3038b3f003b5332c782e00e395a14b8dcba6d8d0 /gnome-extra/gnome-utils/files | |
parent | Moved from app-gnustep/imageviewer to gnustep-apps/imageviewer (diff) | |
download | gentoo-2-733cabbbfc770c535dba30953a85f48fa73bce76.tar.gz gentoo-2-733cabbbfc770c535dba30953a85f48fa73bce76.tar.bz2 gentoo-2-733cabbbfc770c535dba30953a85f48fa73bce76.zip |
removed old version, new bump fixes bug #49794
Diffstat (limited to 'gnome-extra/gnome-utils/files')
-rw-r--r-- | gnome-extra/gnome-utils/files/digest-gnome-utils-2.6.2-r1 (renamed from gnome-extra/gnome-utils/files/digest-gnome-utils-2.6.2) | 0 | ||||
-rw-r--r-- | gnome-extra/gnome-utils/files/gnome-utils-2.6.2-gfloppymajor.patch | 32 |
2 files changed, 32 insertions, 0 deletions
diff --git a/gnome-extra/gnome-utils/files/digest-gnome-utils-2.6.2 b/gnome-extra/gnome-utils/files/digest-gnome-utils-2.6.2-r1 index e35ea927688a..e35ea927688a 100644 --- a/gnome-extra/gnome-utils/files/digest-gnome-utils-2.6.2 +++ b/gnome-extra/gnome-utils/files/digest-gnome-utils-2.6.2-r1 diff --git a/gnome-extra/gnome-utils/files/gnome-utils-2.6.2-gfloppymajor.patch b/gnome-extra/gnome-utils/files/gnome-utils-2.6.2-gfloppymajor.patch new file mode 100644 index 000000000000..526b4c17ae2a --- /dev/null +++ b/gnome-extra/gnome-utils/files/gnome-utils-2.6.2-gfloppymajor.patch @@ -0,0 +1,32 @@ +--- gnome-utils-2.6.2/gfloppy/src/gfloppy.c 2004-04-28 18:22:36.000000000 -0500 ++++ gnome-utils-2.6.2-fixed/gfloppy/src/gfloppy.c 2004-05-02 21:09:06.000000000 -0500 +@@ -35,8 +35,8 @@ + #include <string.h> + + #ifdef HAVE_LINUX_FD_H +-#include <linux/fd.h> +-#include <linux/fs.h> ++ #include <linux/fd.h> ++ #include <sys/sysmacros.h> + #endif + + #include "gfloppy.h" +@@ -579,7 +579,7 @@ + + if (stat (device, &s) < 0) + return GFLOPPY_NO_DEVICE; +- if (!S_ISBLK(s.st_mode) || MAJOR(s.st_rdev) != FLOPPY_MAJOR) ++ if (!S_ISBLK(s.st_mode) || major(s.st_rdev) != FLOPPY_MAJOR) + return GFLOPPY_NO_DEVICE; + + if (access (device, R_OK|W_OK) != 0) +--- gnome-utils-2.6.2/gfloppy/src/badblocks.c 2004-01-04 17:21:32.000000000 -0600 ++++ gnome-utils-2.6.2-fixed/gfloppy/src/badblocks.c 2004-05-02 20:59:55.000000000 -0500 +@@ -42,7 +42,6 @@ + + #ifdef HAVE_LINUX_FD_H + #include <linux/fd.h> +-#include <linux/fs.h> + #endif + + #include <et/com_err.h> |