diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-01-29 10:48:46 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-01-29 10:48:46 +0000 |
commit | 87733febce67553d6e0c150919ac5f0a531a780b (patch) | |
tree | 0f48a0a61f7d54fb9e21ede8cb0d65c5c82149ea /package/xfsprogs/patches/130-uclibc_no_xattr.patch | |
parent | 4b5cd16c55ea53b347805c6bf2c10db5f133d0d2 (diff) |
move a few packages to system/utils
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35375 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/xfsprogs/patches/130-uclibc_no_xattr.patch')
-rw-r--r-- | package/xfsprogs/patches/130-uclibc_no_xattr.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/package/xfsprogs/patches/130-uclibc_no_xattr.patch b/package/xfsprogs/patches/130-uclibc_no_xattr.patch deleted file mode 100644 index b1ecda71e..000000000 --- a/package/xfsprogs/patches/130-uclibc_no_xattr.patch +++ /dev/null @@ -1,36 +0,0 @@ -commit 10d6058b24f18cb31889154f830b191849f45106 -Author: Jens Muecke <jens@nons.de> -Date: Thu Jan 26 00:38:27 2012 +0100 - - 130-uclibc_no_xattr - -diff --git a/fsr/xfs_fsr.c b/fsr/xfs_fsr.c -index 40c2e6f..4f54059 100644 ---- a/fsr/xfs_fsr.c -+++ b/fsr/xfs_fsr.c -@@ -35,7 +35,9 @@ - #include <sys/wait.h> - #include <sys/vfs.h> - #include <sys/statvfs.h> -+#ifndef __UCLIBC__ - #include <sys/xattr.h> -+#endif - - - #ifndef XFS_XFLAG_NODEFRAG -@@ -990,6 +992,7 @@ fsr_setup_attr_fork( - int tfd, - xfs_bstat_t *bstatp) - { -+#ifndef __UCLIBC__ - struct stat64 tstatbuf; - int i; - int last_forkoff = 0; -@@ -1108,6 +1111,7 @@ fsr_setup_attr_fork( - out: - if (dflag) - fsrprintf(_("set temp attr\n")); -+#endif - return 0; - } - |