packages: clean up the package folder
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37007
This commit is contained in:
84
package/utils/xfsprogs/patches/001-automake-compat.patch
Normal file
84
package/utils/xfsprogs/patches/001-automake-compat.patch
Normal file
@@ -0,0 +1,84 @@
|
||||
commit 2222aa77e11b959e0e5a0ded3482e56799593bc2
|
||||
Author: Jens Muecke <jens@nons.de>
|
||||
Date: Thu Jan 26 00:34:15 2012 +0100
|
||||
|
||||
001-automake-compat
|
||||
|
||||
diff --git a/configure.in b/configure.in
|
||||
index 664c0e9..d91b6ec 100644
|
||||
--- a/configure.in
|
||||
+++ b/configure.in
|
||||
@@ -2,7 +2,8 @@ AC_INIT(include/libxfs.h)
|
||||
AC_PREREQ(2.50)
|
||||
AC_CONFIG_AUX_DIR([.])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
-AC_CONFIG_HEADER(include/platform_defs.h)
|
||||
+# Put a dummy here (http://www.mail-archive.com/automake@gnu.org/msg09241.html)
|
||||
+AC_CONFIG_HEADERS([doesnotexist.h include/platform_defs.h])
|
||||
AC_PREFIX_DEFAULT(/usr)
|
||||
|
||||
AC_PROG_LIBTOOL
|
||||
diff --git a/include/builddefs.in b/include/builddefs.in
|
||||
index 81ebfcd..5a4a0e8 100644
|
||||
--- a/include/builddefs.in
|
||||
+++ b/include/builddefs.in
|
||||
@@ -20,6 +20,8 @@
|
||||
ifndef _BUILDDEFS_INCLUDED_
|
||||
_BUILDDEFS_INCLUDED_ = 1
|
||||
|
||||
+SHELL = @SHELL@
|
||||
+
|
||||
DEBUG = @debug_build@
|
||||
OPTIMIZER = @opt_build@
|
||||
MALLOCLIB = @malloc_lib@
|
||||
diff --git a/m4/package_types.m4 b/m4/package_types.m4
|
||||
index 0a0e087..66a136a 100644
|
||||
--- a/m4/package_types.m4
|
||||
+++ b/m4/package_types.m4
|
||||
@@ -9,7 +9,7 @@ AC_DEFUN([AC_TYPE_PSINT],
|
||||
#include <stddef.h>
|
||||
], [
|
||||
__psint_t psint;
|
||||
- ], AC_DEFINE(HAVE___PSINT_T) AC_MSG_RESULT(yes) , AC_MSG_RESULT(no))
|
||||
+ ], AC_DEFINE([HAVE___PSINT_T], [1], [Define if __psint_t exists]) AC_MSG_RESULT(yes) , AC_MSG_RESULT(no))
|
||||
])
|
||||
|
||||
#
|
||||
@@ -23,7 +23,7 @@ AC_DEFUN([AC_TYPE_PSUNSIGNED],
|
||||
#include <stddef.h>
|
||||
], [
|
||||
__psunsigned_t psuint;
|
||||
- ], AC_DEFINE(HAVE___PSUNSIGNED_T) AC_MSG_RESULT(yes) , AC_MSG_RESULT(no))
|
||||
+ ], AC_DEFINE([HAVE___PSUNSIGNED_T], [1], [Define if __psunsigned_t exists]) AC_MSG_RESULT(yes) , AC_MSG_RESULT(no))
|
||||
])
|
||||
|
||||
#
|
||||
@@ -37,7 +37,7 @@ AC_DEFUN([AC_TYPE_U32],
|
||||
#include <stddef.h>
|
||||
], [
|
||||
__u32 u32;
|
||||
- ], AC_DEFINE(HAVE___U32) AC_MSG_RESULT(yes) , AC_MSG_RESULT(no))
|
||||
+ ], AC_DEFINE([HAVE___U32], [1], [Define if __u32 exists]) AC_MSG_RESULT(yes) , AC_MSG_RESULT(no))
|
||||
])
|
||||
|
||||
#
|
||||
@@ -50,15 +50,15 @@ AC_DEFUN([AC_SIZEOF_POINTERS_AND_LONG],
|
||||
AC_CHECK_SIZEOF(long, 4)
|
||||
AC_CHECK_SIZEOF(char *, 4)
|
||||
if test $ac_cv_sizeof_long -eq 4 -o $ac_cv_sizeof_long -eq 0; then
|
||||
- AC_DEFINE(HAVE_32BIT_LONG)
|
||||
+ AC_DEFINE([HAVE_32BIT_LONG], [1], [Define if long is 32bit])
|
||||
fi
|
||||
if test $ac_cv_sizeof_long -eq 8; then
|
||||
- AC_DEFINE(HAVE_64BIT_LONG)
|
||||
+ AC_DEFINE([HAVE_64BIT_LONG], [1], [Define if long is 64bit])
|
||||
fi
|
||||
if test $ac_cv_sizeof_char_p -eq 4 -o $ac_cv_sizeof_char_p -eq 0; then
|
||||
- AC_DEFINE(HAVE_32BIT_PTR)
|
||||
+ AC_DEFINE([HAVE_32BIT_PTR], [1], [Define if char* is 32bit])
|
||||
fi
|
||||
if test $ac_cv_sizeof_char_p -eq 8; then
|
||||
- AC_DEFINE(HAVE_64BIT_PTR)
|
||||
+ AC_DEFINE([HAVE_64BIT_PTR], [1], [Define if char* is 64bit])
|
||||
fi
|
||||
])
|
||||
21
package/utils/xfsprogs/patches/100-no_aio.patch
Normal file
21
package/utils/xfsprogs/patches/100-no_aio.patch
Normal file
@@ -0,0 +1,21 @@
|
||||
commit e72b7bd12fdef06c3494b919376bfe886aa8bb4d
|
||||
Author: Jens Muecke <jens@nons.de>
|
||||
Date: Thu Jan 26 00:35:43 2012 +0100
|
||||
|
||||
100-no_aio
|
||||
|
||||
diff --git a/configure.in b/configure.in
|
||||
index d91b6ec..8dc8b4a 100644
|
||||
--- a/configure.in
|
||||
+++ b/configure.in
|
||||
@@ -92,8 +92,8 @@ AC_PACKAGE_GLOBALS(xfsprogs)
|
||||
AC_PACKAGE_UTILITIES(xfsprogs)
|
||||
AC_MULTILIB($enable_lib64)
|
||||
|
||||
-AC_PACKAGE_NEED_AIO_H
|
||||
-AC_PACKAGE_NEED_LIO_LISTIO
|
||||
+librt="-lrt"
|
||||
+AC_SUBST(librt)
|
||||
|
||||
AC_PACKAGE_NEED_UUID_H
|
||||
AC_PACKAGE_NEED_UUIDCOMPARE
|
||||
36
package/utils/xfsprogs/patches/110-uclibc_no_ustat.patch
Normal file
36
package/utils/xfsprogs/patches/110-uclibc_no_ustat.patch
Normal file
@@ -0,0 +1,36 @@
|
||||
commit 7b1d0a98e779170232c0a81b4749ab934ec67a7e
|
||||
Author: Jens Muecke <jens@nons.de>
|
||||
Date: Thu Jan 26 00:36:42 2012 +0100
|
||||
|
||||
110-uclibc_no_ustat
|
||||
|
||||
diff --git a/libxfs/linux.c b/libxfs/linux.c
|
||||
index 2e07d54..6a6c905 100644
|
||||
--- a/libxfs/linux.c
|
||||
+++ b/libxfs/linux.c
|
||||
@@ -21,7 +21,9 @@
|
||||
#include <mntent.h>
|
||||
#include <sys/stat.h>
|
||||
#undef ustat
|
||||
+#ifndef __UCLIBC__
|
||||
#include <sys/ustat.h>
|
||||
+#endif
|
||||
#include <sys/mount.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/sysinfo.h>
|
||||
@@ -49,6 +51,7 @@ static int max_block_alignment;
|
||||
int
|
||||
platform_check_ismounted(char *name, char *block, struct stat64 *s, int verbose)
|
||||
{
|
||||
+#ifndef __UCLIBC__
|
||||
/* Pad ust; pre-2.6.28 linux copies out too much in 32bit compat mode */
|
||||
struct ustat ust[2];
|
||||
struct stat64 st;
|
||||
@@ -68,6 +71,7 @@ platform_check_ismounted(char *name, char *block, struct stat64 *s, int verbose)
|
||||
progname, name);
|
||||
return 1;
|
||||
}
|
||||
+#endif
|
||||
return 0;
|
||||
}
|
||||
|
||||
47
package/utils/xfsprogs/patches/120-portability.patch
Normal file
47
package/utils/xfsprogs/patches/120-portability.patch
Normal file
@@ -0,0 +1,47 @@
|
||||
commit d2aef8b3967e53fe58178f5af50fef488ee0faed
|
||||
Author: Jens Muecke <jens@nons.de>
|
||||
Date: Thu Jan 26 00:37:52 2012 +0100
|
||||
|
||||
120-portability
|
||||
|
||||
diff --git a/copy/xfs_copy.c b/copy/xfs_copy.c
|
||||
index c01e0b9..2e2f320 100644
|
||||
--- a/copy/xfs_copy.c
|
||||
+++ b/copy/xfs_copy.c
|
||||
@@ -463,6 +463,15 @@ read_ag_header(int fd, xfs_agnumber_t agno, wbuf *buf, ag_header_t *ag,
|
||||
}
|
||||
|
||||
|
||||
+static void sig_mask(int type)
|
||||
+{
|
||||
+ sigset_t mask;
|
||||
+ sigemptyset(&mask);
|
||||
+ sigaddset(&mask, SIGCHLD);
|
||||
+ sigprocmask(type, &mask, NULL);
|
||||
+}
|
||||
+
|
||||
+
|
||||
void
|
||||
write_wbuf(void)
|
||||
{
|
||||
@@ -478,9 +487,9 @@ write_wbuf(void)
|
||||
if (target[i].state != INACTIVE)
|
||||
pthread_mutex_unlock(&targ[i].wait); /* wake up */
|
||||
|
||||
- sigrelse(SIGCHLD);
|
||||
+ sig_mask(SIG_UNBLOCK);
|
||||
pthread_mutex_lock(&mainwait);
|
||||
- sighold(SIGCHLD);
|
||||
+ sig_mask(SIG_BLOCK);
|
||||
}
|
||||
|
||||
|
||||
@@ -847,7 +856,7 @@ main(int argc, char **argv)
|
||||
/* set up sigchild signal handler */
|
||||
|
||||
signal(SIGCHLD, handler);
|
||||
- sighold(SIGCHLD);
|
||||
+ sig_mask(SIG_BLOCK);
|
||||
|
||||
/* make children */
|
||||
|
||||
36
package/utils/xfsprogs/patches/130-uclibc_no_xattr.patch
Normal file
36
package/utils/xfsprogs/patches/130-uclibc_no_xattr.patch
Normal file
@@ -0,0 +1,36 @@
|
||||
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;
|
||||
}
|
||||
|
||||
20
package/utils/xfsprogs/patches/140-no_po.patch
Normal file
20
package/utils/xfsprogs/patches/140-no_po.patch
Normal file
@@ -0,0 +1,20 @@
|
||||
diff -urN xfsprogs-3.1.7/Makefile xfsprogs-3.1.7.new/Makefile
|
||||
--- xfsprogs-3.1.7/Makefile 2011-11-18 00:30:24.000000000 +0100
|
||||
+++ xfsprogs-3.1.7.new/Makefile 2012-04-20 14:15:48.641722955 +0200
|
||||
@@ -41,7 +41,7 @@
|
||||
|
||||
LIB_SUBDIRS = libxfs libxlog libxcmd libhandle libdisk
|
||||
TOOL_SUBDIRS = copy db estimate fsck fsr growfs io logprint mkfs quota \
|
||||
- mdrestore repair rtcp m4 man doc po debian
|
||||
+ mdrestore repair rtcp m4 man doc debian
|
||||
|
||||
SUBDIRS = include $(LIB_SUBDIRS) $(TOOL_SUBDIRS)
|
||||
|
||||
@@ -135,7 +135,6 @@
|
||||
$(Q)$(MAKE) $(MAKEOPTS) -C . $@
|
||||
else
|
||||
$(Q)$(MAKE) $(MAKEOPTS) $(SRCDIR)
|
||||
- $(Q)$(MAKE) $(MAKEOPTS) -C po
|
||||
$(Q)$(MAKE) $(MAKEOPTS) source-link
|
||||
$(Q)cd $(SRCDIR) && dpkg-buildpackage
|
||||
endif
|
||||
Reference in New Issue
Block a user