Author: nbd Date: 2014-06-09 15:47:44 +0200 (Mon, 09 Jun 2014) New Revision: 41058
Added: trunk/package/utils/xfsprogs/patches/150-include_fixes.patch Modified: trunk/package/utils/xfsprogs/patches/110-uclibc_no_ustat.patch trunk/package/utils/xfsprogs/patches/130-uclibc_no_xattr.patch Log: xfsprogs: fix compile errors with musl Signed-off-by: Felix Fietkau <[email protected]> Modified: trunk/package/utils/xfsprogs/patches/110-uclibc_no_ustat.patch =================================================================== --- trunk/package/utils/xfsprogs/patches/110-uclibc_no_ustat.patch 2014-06-09 13:47:40 UTC (rev 41057) +++ trunk/package/utils/xfsprogs/patches/110-uclibc_no_ustat.patch 2014-06-09 13:47:44 UTC (rev 41058) @@ -8,13 +8,11 @@ index 2e07d54..6a6c905 100644 --- a/libxfs/linux.c +++ b/libxfs/linux.c -@@ -21,7 +21,9 @@ +@@ -21,7 +21,6 @@ #include <mntent.h> #include <sys/stat.h> #undef ustat -+#ifndef __UCLIBC__ - #include <sys/ustat.h> -+#endif +-#include <sys/ustat.h> #include <sys/mount.h> #include <sys/ioctl.h> #include <sys/sysinfo.h> @@ -22,7 +20,7 @@ int platform_check_ismounted(char *name, char *block, struct stat64 *s, int verbose) { -+#ifndef __UCLIBC__ ++#if 0 /* Pad ust; pre-2.6.28 linux copies out too much in 32bit compat mode */ struct ustat ust[2]; struct stat64 st; Modified: trunk/package/utils/xfsprogs/patches/130-uclibc_no_xattr.patch =================================================================== --- trunk/package/utils/xfsprogs/patches/130-uclibc_no_xattr.patch 2014-06-09 13:47:40 UTC (rev 41057) +++ trunk/package/utils/xfsprogs/patches/130-uclibc_no_xattr.patch 2014-06-09 13:47:44 UTC (rev 41058) @@ -8,13 +8,11 @@ index 40c2e6f..4f54059 100644 --- a/fsr/xfs_fsr.c +++ b/fsr/xfs_fsr.c -@@ -35,7 +35,9 @@ +@@ -35,7 +35,6 @@ #include <sys/wait.h> #include <sys/vfs.h> #include <sys/statvfs.h> -+#ifndef __UCLIBC__ - #include <sys/xattr.h> -+#endif +-#include <sys/xattr.h> #ifndef XFS_XFLAG_NODEFRAG @@ -22,7 +20,7 @@ int tfd, xfs_bstat_t *bstatp) { -+#ifndef __UCLIBC__ ++#if 0 struct stat64 tstatbuf; int i; int last_forkoff = 0; Added: trunk/package/utils/xfsprogs/patches/150-include_fixes.patch =================================================================== --- trunk/package/utils/xfsprogs/patches/150-include_fixes.patch (rev 0) +++ trunk/package/utils/xfsprogs/patches/150-include_fixes.patch 2014-06-09 13:47:44 UTC (rev 41058) @@ -0,0 +1,72 @@ +--- a/libhandle/handle.c ++++ b/libhandle/handle.c +@@ -20,6 +20,7 @@ + #include <xfs/xfs.h> + #include <xfs/handle.h> + #include <xfs/parent.h> ++#include <linux/limits.h> + + /* just pick a value we know is more than big enough */ + #define MAXHANSIZ 64 +--- a/libhandle/jdm.c ++++ b/libhandle/jdm.c +@@ -20,6 +20,7 @@ + #include <xfs/handle.h> + #include <xfs/jdm.h> + #include <xfs/parent.h> ++#include <linux/limits.h> + + /* internal fshandle - typecast to a void for external use */ + #define FSHANDLE_SZ 8 +--- a/libdisk/evms.c ++++ b/libdisk/evms.c +@@ -22,6 +22,7 @@ + #include <fcntl.h> + #include <sys/ioctl.h> + #include <sys/sysmacros.h> ++#include <sys/stat.h> + #include <disk/volume.h> + #include "evms.h" + +--- a/libdisk/evms.h ++++ b/libdisk/evms.h +@@ -16,6 +16,8 @@ + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + ++#include <sys/types.h> ++ + #define EVMS_MAJOR 117 + #define EVMS_GET_VOL_STRIPE_INFO \ + _IOR(EVMS_MAJOR, 0xF0, struct evms_vol_stripe_info_s) +--- a/libdisk/fstype.h ++++ b/libdisk/fstype.h +@@ -192,7 +192,7 @@ struct adfs_super_block { + char s_dummy2[62]; + char s_checksum[1]; + }; +-#define adfsblksize(s) ((uint) s.s_blksize[0]) ++#define adfsblksize(s) ((unsigned int) s.s_blksize[0]) + + /* found in first 4 bytes of block 1 */ + struct vxfs_super_block { +--- a/fsr/xfs_fsr.c ++++ b/fsr/xfs_fsr.c +@@ -25,6 +25,7 @@ + #include <xfs/xfs_dinode.h> + #include <xfs/xfs_attr_sf.h> + ++#include <paths.h> + #include <fcntl.h> + #include <errno.h> + #include <malloc.h> +--- a/libdisk/xvm.c ++++ b/libdisk/xvm.c +@@ -22,6 +22,7 @@ + #include <unistd.h> + #include <sys/stat.h> + #include <sys/ioctl.h> ++#include <sys/types.h> + #include <disk/volume.h> + #include "xvm.h" + _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
