From faf408f4affa448a042448d905b2dbe2402fbd02 Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Fri, 7 Oct 2011 12:25:21 -0300 Subject: lsof: bump to version 4.85 Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- package/lsof/lsof-4.84-makefile.patch | 14 -------------- package/lsof/lsof-4.84-noportmap.patch | 18 ------------------ package/lsof/lsof-4.84-override-cflags.patch | 13 ------------- package/lsof/lsof-4.84-remove-susvlegacy-funcs.patch | 12 ------------ package/lsof/lsof-4.85-makefile.patch | 14 ++++++++++++++ package/lsof/lsof-4.85-noportmap.patch | 18 ++++++++++++++++++ package/lsof/lsof-4.85-override-cflags.patch | 13 +++++++++++++ package/lsof/lsof-4.85-remove-susvlegacy-funcs.patch | 12 ++++++++++++ package/lsof/lsof.mk | 3 ++- 9 files changed, 59 insertions(+), 58 deletions(-) delete mode 100644 package/lsof/lsof-4.84-makefile.patch delete mode 100644 package/lsof/lsof-4.84-noportmap.patch delete mode 100644 package/lsof/lsof-4.84-override-cflags.patch delete mode 100644 package/lsof/lsof-4.84-remove-susvlegacy-funcs.patch create mode 100644 package/lsof/lsof-4.85-makefile.patch create mode 100644 package/lsof/lsof-4.85-noportmap.patch create mode 100644 package/lsof/lsof-4.85-override-cflags.patch create mode 100644 package/lsof/lsof-4.85-remove-susvlegacy-funcs.patch (limited to 'package/lsof') diff --git a/package/lsof/lsof-4.84-makefile.patch b/package/lsof/lsof-4.84-makefile.patch deleted file mode 100644 index 65b1b2e2a..000000000 --- a/package/lsof/lsof-4.84-makefile.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -ru lsof_4.81.orig/lsof_4.81_src/lib/Makefile.skel lsof_4.81/lsof_4.81_src/lib/Makefile.skel ---- a/lib/Makefile.skel 2001-02-13 03:12:22.000000000 +0100 -+++ b/lib/Makefile.skel 2006-11-29 13:51:44.000000000 +0100 -@@ -21,8 +21,8 @@ - all: ${LIB} - - ${LIB}: ${OBJ} -- ${AR} -- ${RANLIB} -+ ${AR} cr ${LIB} ${OBJ} -+ ${RANLIB} ${LIB} - - clean: FRC - rm -f ${LIB} ${OBJ} errs Makefile.bak a.out core diff --git a/package/lsof/lsof-4.84-noportmap.patch b/package/lsof/lsof-4.84-noportmap.patch deleted file mode 100644 index 984e0d8ea..000000000 --- a/package/lsof/lsof-4.84-noportmap.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- a/print.c 2006-08-23 13:37:43.000000000 -0600 -+++ b/print.c 2006-08-23 13:38:29.000000000 -0600 -@@ -148,6 +148,7 @@ - static void - fill_portmap() - { -+#if !defined __UCLIBC__ || (defined __UCLIBC__ && defined __UCLIBC_HAS_RPC__) - char buf[128], *cp, *nm; - CLIENT *c; - int h, port, pr; -@@ -266,6 +267,7 @@ - Pth[pr][h] = pt; - } - clnt_destroy(c); -+#endif - } - - diff --git a/package/lsof/lsof-4.84-override-cflags.patch b/package/lsof/lsof-4.84-override-cflags.patch deleted file mode 100644 index 135e599ac..000000000 --- a/package/lsof/lsof-4.84-override-cflags.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- lsof_4.84/Configure 2008-10-21 18:21:45.000000000 +0200 -+++ lsof_4.84/Configure 2010-11-03 14:00:00.000000000 +0100 -@@ -5206,6 +5206,10 @@ - cp $LSOF_MKFC ${LSOF_LIB}/$LSOF_LIBMKF - fi # } - cat ./dialects/$LSOF_DIALECT_DIR/$LSOF_REST >> $LSOF_MKFC -+if test "X$LSOF_CFLAGS_OVERRIDE" != "X" # { -+then -+ sed -i -e 's/^CFLAGS=/override CFLAGS=/' $LSOF_MKFC -+fi # } - if test "X$LSOF_LIB_NO" = "X" # { - then - diff --git a/package/lsof/lsof-4.84-remove-susvlegacy-funcs.patch b/package/lsof/lsof-4.84-remove-susvlegacy-funcs.patch deleted file mode 100644 index fca66aee5..000000000 --- a/package/lsof/lsof-4.84-remove-susvlegacy-funcs.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -rdup lsof_4.81.orig/lsof_4.81_src/dialects/linux/machine.h lsof_4.81/lsof_4.81_src/dialects/linux/machine.h ---- a/dialects/linux/machine.h 2007-04-24 18:20:58.000000000 +0200 -+++ b/dialects/linux/machine.h 2007-05-15 12:17:03.000000000 +0200 -@@ -616,6 +616,6 @@ - * zeromem is a macro that uses bzero or memset. - */ - --#define zeromem(a, l) bzero(a, l) -+#define zeromem(a, l) memset(a, 0, l) - - #endif /* !defined(LSOF_MACHINE_H) */ - diff --git a/package/lsof/lsof-4.85-makefile.patch b/package/lsof/lsof-4.85-makefile.patch new file mode 100644 index 000000000..65b1b2e2a --- /dev/null +++ b/package/lsof/lsof-4.85-makefile.patch @@ -0,0 +1,14 @@ +diff -ru lsof_4.81.orig/lsof_4.81_src/lib/Makefile.skel lsof_4.81/lsof_4.81_src/lib/Makefile.skel +--- a/lib/Makefile.skel 2001-02-13 03:12:22.000000000 +0100 ++++ b/lib/Makefile.skel 2006-11-29 13:51:44.000000000 +0100 +@@ -21,8 +21,8 @@ + all: ${LIB} + + ${LIB}: ${OBJ} +- ${AR} +- ${RANLIB} ++ ${AR} cr ${LIB} ${OBJ} ++ ${RANLIB} ${LIB} + + clean: FRC + rm -f ${LIB} ${OBJ} errs Makefile.bak a.out core diff --git a/package/lsof/lsof-4.85-noportmap.patch b/package/lsof/lsof-4.85-noportmap.patch new file mode 100644 index 000000000..984e0d8ea --- /dev/null +++ b/package/lsof/lsof-4.85-noportmap.patch @@ -0,0 +1,18 @@ +--- a/print.c 2006-08-23 13:37:43.000000000 -0600 ++++ b/print.c 2006-08-23 13:38:29.000000000 -0600 +@@ -148,6 +148,7 @@ + static void + fill_portmap() + { ++#if !defined __UCLIBC__ || (defined __UCLIBC__ && defined __UCLIBC_HAS_RPC__) + char buf[128], *cp, *nm; + CLIENT *c; + int h, port, pr; +@@ -266,6 +267,7 @@ + Pth[pr][h] = pt; + } + clnt_destroy(c); ++#endif + } + + diff --git a/package/lsof/lsof-4.85-override-cflags.patch b/package/lsof/lsof-4.85-override-cflags.patch new file mode 100644 index 000000000..135e599ac --- /dev/null +++ b/package/lsof/lsof-4.85-override-cflags.patch @@ -0,0 +1,13 @@ +--- lsof_4.84/Configure 2008-10-21 18:21:45.000000000 +0200 ++++ lsof_4.84/Configure 2010-11-03 14:00:00.000000000 +0100 +@@ -5206,6 +5206,10 @@ + cp $LSOF_MKFC ${LSOF_LIB}/$LSOF_LIBMKF + fi # } + cat ./dialects/$LSOF_DIALECT_DIR/$LSOF_REST >> $LSOF_MKFC ++if test "X$LSOF_CFLAGS_OVERRIDE" != "X" # { ++then ++ sed -i -e 's/^CFLAGS=/override CFLAGS=/' $LSOF_MKFC ++fi # } + if test "X$LSOF_LIB_NO" = "X" # { + then + diff --git a/package/lsof/lsof-4.85-remove-susvlegacy-funcs.patch b/package/lsof/lsof-4.85-remove-susvlegacy-funcs.patch new file mode 100644 index 000000000..fca66aee5 --- /dev/null +++ b/package/lsof/lsof-4.85-remove-susvlegacy-funcs.patch @@ -0,0 +1,12 @@ +diff -rdup lsof_4.81.orig/lsof_4.81_src/dialects/linux/machine.h lsof_4.81/lsof_4.81_src/dialects/linux/machine.h +--- a/dialects/linux/machine.h 2007-04-24 18:20:58.000000000 +0200 ++++ b/dialects/linux/machine.h 2007-05-15 12:17:03.000000000 +0200 +@@ -616,6 +616,6 @@ + * zeromem is a macro that uses bzero or memset. + */ + +-#define zeromem(a, l) bzero(a, l) ++#define zeromem(a, l) memset(a, 0, l) + + #endif /* !defined(LSOF_MACHINE_H) */ + diff --git a/package/lsof/lsof.mk b/package/lsof/lsof.mk index 547382f31..ff76f92c6 100644 --- a/package/lsof/lsof.mk +++ b/package/lsof/lsof.mk @@ -3,7 +3,8 @@ # lsof # ############################################################# -LSOF_VERSION = 4.84 + +LSOF_VERSION = 4.85 LSOF_SOURCE = lsof_$(LSOF_VERSION).tar.bz2 LSOF_SITE = ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ -- cgit v1.2.3