diff options
author | wiz <wiz@pkgsrc.org> | 2000-08-25 00:51:21 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2000-08-25 00:51:21 +0000 |
commit | abea2ed953013445d3c372e0a628e00bd7fcc33b (patch) | |
tree | 40b441ccb80086893acdb7734b3ad54a46695b7a /sysutils/lsof/patches | |
parent | 4e88e19902375391c7fb6876479eabf25d7f3781 (diff) | |
download | pkgsrc-abea2ed953013445d3c372e0a628e00bd7fcc33b.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/lsof/patches')
-rw-r--r-- | sysutils/lsof/patches/patch-aa | 52 |
1 files changed, 0 insertions, 52 deletions
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__) |