diff options
author | 2006-04-20 01:46:43 +0000 | |
---|---|---|
committer | 2006-04-20 01:46:43 +0000 | |
commit | c91341ad1b965bc629f49bdfb0dc2f81d27e52e7 (patch) | |
tree | f5f49de9d561a03b7580517f295744ee37edaf48 /sys-fs/xfsprogs/files | |
parent | Respect user LDFLAGS #126825 by Diego Pettenò. (diff) | |
download | historical-c91341ad1b965bc629f49bdfb0dc2f81d27e52e7.tar.gz historical-c91341ad1b965bc629f49bdfb0dc2f81d27e52e7.tar.bz2 historical-c91341ad1b965bc629f49bdfb0dc2f81d27e52e7.zip |
old
Package-Manager: portage-2.1_pre9
Diffstat (limited to 'sys-fs/xfsprogs/files')
-rw-r--r-- | sys-fs/xfsprogs/files/2.6.13-configure.patch | 10 | ||||
-rw-r--r-- | sys-fs/xfsprogs/files/2.6.13-uclibc-mincore.patch | 52 | ||||
-rw-r--r-- | sys-fs/xfsprogs/files/2.6.25-uclibc-fadvise.patch | 28 | ||||
-rw-r--r-- | sys-fs/xfsprogs/files/digest-xfsprogs-2.6.25 | 3 | ||||
-rw-r--r-- | sys-fs/xfsprogs/files/digest-xfsprogs-2.6.36 | 3 | ||||
-rw-r--r-- | sys-fs/xfsprogs/files/xfsprogs-2.6.25-gcc4.patch | 263 |
6 files changed, 0 insertions, 359 deletions
diff --git a/sys-fs/xfsprogs/files/2.6.13-configure.patch b/sys-fs/xfsprogs/files/2.6.13-configure.patch deleted file mode 100644 index d05fea227dd0..000000000000 --- a/sys-fs/xfsprogs/files/2.6.13-configure.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- configure.in.orig 2004-09-29 00:20:24.361474856 +0200 -+++ configure.in 2004-09-29 00:20:37.668451888 +0200 -@@ -1,4 +1,7 @@ - AC_INIT(include/libxfs.h) -+ -+AC_PROG_CC -+ - AC_CONFIG_HEADER(include/platform_defs.h) - - AC_ARG_ENABLE(shared, diff --git a/sys-fs/xfsprogs/files/2.6.13-uclibc-mincore.patch b/sys-fs/xfsprogs/files/2.6.13-uclibc-mincore.patch deleted file mode 100644 index e299870c40e7..000000000000 --- a/sys-fs/xfsprogs/files/2.6.13-uclibc-mincore.patch +++ /dev/null @@ -1,52 +0,0 @@ ---- xfsprogs-orig/io/mmap.c Fri Apr 30 20:34:08 2004 -+++ xfsprogs-2.6.13/io/mmap.c Sat Sep 11 15:34:43 2004 -@@ -44,7 +44,9 @@ - static cmdinfo_t munmap_cmd; - static cmdinfo_t mwrite_cmd; - static cmdinfo_t madvise_cmd; -+#ifndef __UCLIBC__ - static cmdinfo_t mincore_cmd; -+#endif - - mmap_region_t *maptable; - int mapcount; -@@ -679,6 +681,7 @@ - return 0; - } - -+#ifndef __UCLIBC__ - int - mincore_f( - int argc, -@@ -757,6 +760,7 @@ - free(vec); - return 0; - } -+#endif - - void - mmap_init(void) -@@ -822,6 +826,7 @@ - madvise_cmd.oneline = _("give advice about use of memory"); - madvise_cmd.help = madvise_help; - -+#ifndef __UCLIBC__ - mincore_cmd.name = _("mincore"); - mincore_cmd.altname = _("mi"); - mincore_cmd.cfunc = mincore_f; -@@ -830,6 +835,7 @@ - mincore_cmd.flags = CMD_NOFILE_OK | CMD_FOREIGN_OK; - mincore_cmd.args = _("[off len]"); - mincore_cmd.oneline = _("find mapping pages that are memory resident"); -+#endif - - add_command(&mmap_cmd); - add_command(&mread_cmd); -@@ -837,5 +843,7 @@ - add_command(&munmap_cmd); - add_command(&mwrite_cmd); - add_command(&madvise_cmd); -+#ifndef __UCLIBC__ - add_command(&mincore_cmd); -+#endif - } diff --git a/sys-fs/xfsprogs/files/2.6.25-uclibc-fadvise.patch b/sys-fs/xfsprogs/files/2.6.25-uclibc-fadvise.patch deleted file mode 100644 index 1c83a62b8687..000000000000 --- a/sys-fs/xfsprogs/files/2.6.25-uclibc-fadvise.patch +++ /dev/null @@ -1,28 +0,0 @@ ---- xfsprogs-2.6.25/aclocal.m4.orig 2004-12-09 00:16:24 +0000 -+++ xfsprogs-2.6.25/aclocal.m4 2004-12-09 00:17:03 +0000 -@@ -243,8 +243,8 @@ - #include <fcntl.h> - ], [ - posix_fadvise(0, 1, 0, POSIX_FADV_NORMAL); -- ], have_fadvise=yes -- AC_MSG_RESULT(yes), -+ ], have_fadvise=no -+ AC_MSG_RESULT(no), - AC_MSG_RESULT(no)) - AC_SUBST(have_fadvise) - ]) ---- xfsprogs-2.6.25/configure.orig 2004-12-09 00:19:21 +0000 -+++ xfsprogs-2.6.25/configure 2004-12-09 00:24:56 +0000 -@@ -4119,9 +4119,9 @@ - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then -- have_fadvise=yes -- echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6 -+ have_fadvise=no -+ echo "$as_me:$LINENO: result: no" >&5 -+echo "${ECHO_T}no" >&6 - else - echo "$as_me: failed program was:" >&5 - sed 's/^/| /' conftest.$ac_ext >&5 diff --git a/sys-fs/xfsprogs/files/digest-xfsprogs-2.6.25 b/sys-fs/xfsprogs/files/digest-xfsprogs-2.6.25 deleted file mode 100644 index 31a91a4382cc..000000000000 --- a/sys-fs/xfsprogs/files/digest-xfsprogs-2.6.25 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 65fbf692f348b57f21edd4813733d9ae xfsprogs-2.6.25.src.tar.gz 850024 -RMD160 95728c626636ffb0be3830e3631c026fc9a1e216 xfsprogs-2.6.25.src.tar.gz 850024 -SHA256 096e74c217b9493c4b94c1c8555482d134a0cf93d29c921088774741d8597c70 xfsprogs-2.6.25.src.tar.gz 850024 diff --git a/sys-fs/xfsprogs/files/digest-xfsprogs-2.6.36 b/sys-fs/xfsprogs/files/digest-xfsprogs-2.6.36 deleted file mode 100644 index 9c6e9b436e1b..000000000000 --- a/sys-fs/xfsprogs/files/digest-xfsprogs-2.6.36 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 41850e643b3c0c5f1690467f3a9d187f xfsprogs-2.6.36.src.tar.gz 878704 -RMD160 c48d1096f81339861c958137f6860bea5a42a2de xfsprogs-2.6.36.src.tar.gz 878704 -SHA256 fc408b0fe65288058d78413bf676afd0e1e99525779be88c43baddca73d72270 xfsprogs-2.6.36.src.tar.gz 878704 diff --git a/sys-fs/xfsprogs/files/xfsprogs-2.6.25-gcc4.patch b/sys-fs/xfsprogs/files/xfsprogs-2.6.25-gcc4.patch deleted file mode 100644 index a7669e3af551..000000000000 --- a/sys-fs/xfsprogs/files/xfsprogs-2.6.25-gcc4.patch +++ /dev/null @@ -1,263 +0,0 @@ ---- xfs-cmds/xfsprogs/db/agf.c -+++ xfs-cmds/xfsprogs/db/agf.c -@@ -31,5 +31,4 @@ - - #include <xfs/libxfs.h> --#include "agf.h" - #include "command.h" - #include "type.h" -@@ -41,4 +40,5 @@ - #include "output.h" - #include "init.h" -+#include "agf.h" - - static int agf_f(int argc, char **argv); ---- xfs-cmds/xfsprogs/db/agf.h -+++ xfs-cmds/xfsprogs/db/agf.h -@@ -30,6 +30,4 @@ - */ - --struct field; -- - extern const struct field agf_flds[]; - extern const struct field agf_hfld[]; ---- xfs-cmds/xfsprogs/db/agfl.c -+++ xfs-cmds/xfsprogs/db/agfl.c -@@ -31,5 +31,4 @@ - - #include <xfs/libxfs.h> --#include "agfl.h" - #include "command.h" - #include "type.h" -@@ -41,4 +40,5 @@ - #include "output.h" - #include "init.h" -+#include "agfl.h" - - static int agfl_bno_size(void *obj, int startoff); ---- xfs-cmds/xfsprogs/db/agfl.h -+++ xfs-cmds/xfsprogs/db/agfl.h -@@ -30,8 +30,6 @@ - * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ - */ - --struct field; -- - extern const struct field agfl_flds[]; - extern const struct field agfl_hfld[]; - ---- xfs-cmds/xfsprogs/db/agi.c -+++ xfs-cmds/xfsprogs/db/agi.c -@@ -31,7 +31,6 @@ - */ - - #include <xfs/libxfs.h> --#include "agi.h" - #include "command.h" - #include "type.h" - #include "faddr.h" -@@ -41,6 +40,7 @@ - #include "bit.h" - #include "output.h" - #include "init.h" -+#include "agi.h" - - static int agi_f(int argc, char **argv); - static void agi_help(void); ---- xfs-cmds/xfsprogs/db/agi.h -+++ xfs-cmds/xfsprogs/db/agi.h -@@ -30,8 +30,6 @@ - * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ - */ - --struct field; -- - extern const struct field agi_flds[]; - extern const struct field agi_hfld[]; - ---- xfs-cmds/xfsprogs/db/bmapbt.h -+++ xfs-cmds/xfsprogs/db/bmapbt.h -@@ -30,8 +30,6 @@ - * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ - */ - --struct field; -- - extern const struct field bmapbta_flds[]; - extern const struct field bmapbta_hfld[]; - extern const struct field bmapbta_key_flds[]; ---- xfs-cmds/xfsprogs/db/bmroot.h -+++ xfs-cmds/xfsprogs/db/bmroot.h -@@ -30,8 +30,6 @@ - * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ - */ - --struct field; -- - extern const struct field bmroota_flds[]; - extern const struct field bmroota_key_flds[]; - extern const struct field bmrootd_flds[]; ---- xfs-cmds/xfsprogs/db/bnobt.h -+++ xfs-cmds/xfsprogs/db/bnobt.h -@@ -30,8 +30,6 @@ - * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ - */ - --struct field; -- - extern const struct field bnobt_flds[]; - extern const struct field bnobt_hfld[]; - extern const struct field bnobt_key_flds[]; ---- xfs-cmds/xfsprogs/db/cntbt.h -+++ xfs-cmds/xfsprogs/db/cntbt.h -@@ -30,8 +30,6 @@ - * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ - */ - --struct field; -- - extern const struct field cntbt_flds[]; - extern const struct field cntbt_hfld[]; - extern const struct field cntbt_key_flds[]; ---- xfs-cmds/xfsprogs/db/dquot.c -+++ xfs-cmds/xfsprogs/db/dquot.c -@@ -34,7 +34,6 @@ - #include "bit.h" - #include "bmap.h" - #include "command.h" --#include "dquot.h" - #include "type.h" - #include "faddr.h" - #include "fprint.h" -@@ -43,6 +42,7 @@ - #include "io.h" - #include "init.h" - #include "output.h" -+#include "dquot.h" - - static int dquot_f(int argc, char **argv); - static void dquot_help(void); ---- xfs-cmds/xfsprogs/db/dquot.h -+++ xfs-cmds/xfsprogs/db/dquot.h -@@ -30,8 +30,6 @@ - * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ - */ - --struct field; -- - extern const struct field disk_dquot_flds[]; - extern const struct field dqblk_flds[]; - extern const struct field dqblk_hfld[]; ---- xfs-cmds/xfsprogs/db/inobt.h -+++ xfs-cmds/xfsprogs/db/inobt.h -@@ -30,8 +30,6 @@ - * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ - */ - --struct field; -- - extern const struct field inobt_flds[]; - extern const struct field inobt_hfld[]; - extern const struct field inobt_key_flds[]; ---- xfs-cmds/xfsprogs/db/sb.h -+++ xfs-cmds/xfsprogs/db/sb.h -@@ -30,8 +30,6 @@ - * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ - */ - --struct field; -- - extern const struct field sb_flds[]; - extern const struct field sb_hfld[]; - ---- xfs-cmds/xfsprogs/db/bmap.c -+++ xfs-cmds/xfsprogs/db/bmap.c -@@ -33,6 +33,9 @@ - #include <xfs/libxfs.h> - #include "command.h" - #include "type.h" -+#include "fprint.h" -+#include "faddr.h" -+#include "field.h" - #include "bmap.h" - #include "io.h" - #include "inode.h" - ---- xfs-cmds/xfsprogs/db/check.c -+++ xfs-cmds/xfsprogs/db/check.c -@@ -37,9 +37,12 @@ - #include "check.h" - #include "command.h" - #include "io.h" -+#include "type.h" -+#include "fprint.h" -+#include "faddr.h" -+#include "field.h" - #include "sb.h" - #include "output.h" --#include "type.h" - #include "init.h" - #include "malloc.h" - - ---- xfs-cmds/xfsprogs/db/command.c -+++ xfs-cmds/xfsprogs/db/command.c -@@ -32,9 +32,6 @@ - - #include <xfs/libxfs.h> - #include "addr.h" --#include "agf.h" --#include "agfl.h" --#include "agi.h" - #include "block.h" - #include "bmap.h" - #include "check.h" -@@ -46,6 +43,9 @@ - #include "faddr.h" - #include "fprint.h" - #include "field.h" -+#include "agf.h" -+#include "agfl.h" -+#include "agi.h" - #include "frag.h" - #include "freesp.h" - #include "help.h" - ---- xfs-cmds/xfsprogs/db/faddr.c -+++ xfs-cmds/xfsprogs/db/faddr.c -@@ -32,7 +32,9 @@ - - #include <xfs/libxfs.h> - #include "type.h" -+#include "fprint.h" - #include "faddr.h" -+#include "field.h" - #include "inode.h" - #include "io.h" - #include "bit.h" - ---- xfs-cmds/xfsprogs/db/type.c -+++ xfs-cmds/xfsprogs/db/type.c -@@ -31,9 +31,6 @@ - */ - - #include <xfs/libxfs.h> --#include "agf.h" --#include "agfl.h" --#include "agi.h" - #include "block.h" - #include "command.h" - #include "type.h" - ---- xfs-cmds/xfsprogs/mkfile/xfs_mkfile.c -+++ xfs-cmds/xfsprogs/mkfile/xfs_mkfile.c -@@ -39,7 +39,7 @@ - - #define MAXBUFFERSIZE (256 * 1024) - --static char *progname; -+char *progname; - - static void - usage(void) - |