summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2017-01-16 10:33:15 +0100
committerLars Wendler <polynomial-c@gentoo.org>2017-01-16 10:58:02 +0100
commitdf68a0530e1bd59fac1dd8b3c30db4711003375a (patch)
treeb91f031044b1b3610f8a7d93f44a585692da7d97 /sys-fs/xfsdump/files
parentdev-lang/ghc: bump up to 8.0.2, no KEYWORDS or binaries yet (diff)
downloadgentoo-df68a0530e1bd59fac1dd8b3c30db4711003375a.tar.gz
gentoo-df68a0530e1bd59fac1dd8b3c30db4711003375a.tar.bz2
gentoo-df68a0530e1bd59fac1dd8b3c30db4711003375a.zip
sys-fs/xfsdump: Removed old.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'sys-fs/xfsdump/files')
-rw-r--r--sys-fs/xfsdump/files/xfsdump-3.1.5-config-platform.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/sys-fs/xfsdump/files/xfsdump-3.1.5-config-platform.patch b/sys-fs/xfsdump/files/xfsdump-3.1.5-config-platform.patch
deleted file mode 100644
index 1c8c855b37b4..000000000000
--- a/sys-fs/xfsdump/files/xfsdump-3.1.5-config-platform.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-a few xfsprogs defs are still used in the code base.
-these are copied from the platform_defs.h.in file.
-
---- include/config.h.in
-+++ include/config.h.in
-@@ -21,4 +21,20 @@
- #endif
- #include <locale.h>
-
-+#define IRIX_DEV_BITSMAJOR 14
-+#define IRIX_DEV_BITSMINOR 18
-+#define IRIX_DEV_MAXMAJ 0x1ff
-+#define IRIX_DEV_MAXMIN 0x3ffff
-+#define IRIX_DEV_MAJOR(dev) ((int)(((unsigned)(dev) >> IRIX_DEV_BITSMINOR) \
-+ & IRIX_DEV_MAXMAJ))
-+#define IRIX_DEV_MINOR(dev) ((int)((dev) & IRIX_DEV_MAXMIN))
-+#define IRIX_MKDEV(major,minor) ((xfs_dev_t)(((major) << IRIX_DEV_BITSMINOR) \
-+ | (minor&IRIX_DEV_MAXMIN)))
-+#define IRIX_DEV_TO_KDEVT(dev) makedev(IRIX_DEV_MAJOR(dev),IRIX_DEV_MINOR(dev))
-+
-+#ifndef min
-+#define min(a,b) (((a)<(b))?(a):(b))
-+#define max(a,b) (((a)>(b))?(a):(b))
-+#endif
-+
- #endif /* __CONFIG_H__ */