summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorwiz <wiz>2000-08-25 00:51:21 +0000
committerwiz <wiz>2000-08-25 00:51:21 +0000
commit0e7234ed9ef54c325f7eef0d24efcc46b754ed04 (patch)
tree40b441ccb80086893acdb7734b3ad54a46695b7a /sysutils
parent8bb7d3cab66837916ce51b578a3e39950194f1ba (diff)
downloadpkgsrc-0e7234ed9ef54c325f7eef0d24efcc46b754ed04.tar.gz
Update to 4.51 -- integrates patch. Other relevant changes:
Changes scripts/ to make Perl 5 the standard; corrects a bug in the reporting of a PTX fattach()'d target address; encourages NetBSD and OpenBSD lsof to use /usr/include/uvm when it's available; adds snprintf() support, including a private version for dialects without one; fixes a BSDI, DEC/OSF1, Digital UNIX, FreeBSD, NetBSD, OpenBSD, and Tru64 UNIX repeat-mode memory leak.
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/lsof/Makefile6
-rw-r--r--sysutils/lsof/files/md54
-rw-r--r--sysutils/lsof/files/patch-sum7
-rw-r--r--sysutils/lsof/patches/patch-aa52
4 files changed, 10 insertions, 59 deletions
diff --git a/sysutils/lsof/Makefile b/sysutils/lsof/Makefile
index d0105e82ffe..82f2f666e0f 100644
--- a/sysutils/lsof/Makefile
+++ b/sysutils/lsof/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.31 2000/06/30 23:28:18 wiz Exp $
+# $NetBSD: Makefile,v 1.32 2000/08/25 00:51:21 wiz Exp $
# FreeBSD Id: Makefile,v 1.19 1998/03/08 06:44:48 obrien Exp
#
-DISTNAME= lsof_4.50_W
-PKGNAME= lsof-4.50.2
+DISTNAME= lsof_4.51_W
+PKGNAME= lsof-4.51.1
WRKSRC= ${WRKDIR}/${SRCBALL_NAME}
CATEGORIES= sysutils
MASTER_SITES= ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/ \
diff --git a/sysutils/lsof/files/md5 b/sysutils/lsof/files/md5
index c70e45cfefa..14133af2f5e 100644
--- a/sysutils/lsof/files/md5
+++ b/sysutils/lsof/files/md5
@@ -1,3 +1,3 @@
-$NetBSD: md5,v 1.21 2000/06/30 23:28:19 wiz Exp $
+$NetBSD: md5,v 1.22 2000/08/25 00:51:21 wiz Exp $
-MD5 (lsof_4.50_W.tar.gz) = 0d7c3cc23f7938015fe2266542809c0f
+MD5 (lsof_4.51_W.tar.gz) = 10674b09649c19015134585c6dca3eee
diff --git a/sysutils/lsof/files/patch-sum b/sysutils/lsof/files/patch-sum
index e695dba5ea7..91e45ec1663 100644
--- a/sysutils/lsof/files/patch-sum
+++ b/sysutils/lsof/files/patch-sum
@@ -1,3 +1,6 @@
-$NetBSD: patch-sum,v 1.7 2000/08/13 12:19:28 kim Exp $
+$NetBSD: patch-sum,v 1.8 2000/08/25 00:51:21 wiz Exp $
-MD5 (patch-aa) = 355b11daf8f7c8ea7677b42bab072835
+This placeholder file is generated by the ``makepatchsum'' target
+whenever the patches directory is empty or missing. Its purpose
+is to ensure that the presence of any obsolete patches will cause
+the proper error to be emitted at build time.
diff --git a/sysutils/lsof/patches/patch-aa b/sysutils/lsof/patches/patch-aa
deleted file mode 100644
index 6ae4794e68c..00000000000
--- a/sysutils/lsof/patches/patch-aa
+++ /dev/null
@@ -1,52 +0,0 @@
-$NetBSD: patch-aa,v 1.15 2000/08/13 12:19:29 kim Exp $
-
---- dialects/n+obsd/dlsof.h.orig Thu Jun 22 15:55:29 2000
-+++ dialects/n+obsd/dlsof.h Sun Aug 13 15:13:46 2000
-@@ -47,6 +47,7 @@
- #include <unistd.h>
- #include <sys/filedesc.h>
- #include <sys/mbuf.h>
-+#include <sys/param.h>
-
- # if defined(NETBSDV)
- #include <sys/buf.h>
-@@ -90,14 +91,12 @@
- #include <netinet/tcp_var.h>
- #include <sys/ucred.h>
-
--# if defined(UVM)
- /*
- * Avoid conflicts with definitions in <vm/vm_param.h>.
- */
-
- #undef FALSE
- #undef TRUE
--# endif /* defined(UVM) */
-
- #include <sys/vnode.h>
-
-@@ -183,6 +182,9 @@
- #define _KERNEL
- #include <sys/file.h>
- #include <sys/fcntl.h>
-+#if defined(__NetBSD_Version__) && (__NetBSD_Version__ >= 105030000)
-+struct vop_advlock_args { int dummy; }; /* to pacify lf_advlock() prototype */
-+#endif
- #include <sys/lockf.h>
- #undef KERNEL
- #undef _KERNEL
-@@ -197,10 +199,14 @@
- #include <uvm/uvm.h>
- # endif /* defined(UVM) */
-
-+#if defined(__NetBSD_Version__) && (__NetBSD_Version__ >= 105020000)
-+#include <uvm/uvm_extern.h>
-+#else
- #include <vm/vm.h>
- #include <vm/vm_map.h>
- #include <vm/vm_object.h>
- #include <vm/vm_pager.h>
-+#endif
-
- # if defined(OPENBSDV)
- # if OPENBSDV==2030 && defined(__sparc__)