diff options
author | ler <ler@FreeBSD.org> | 2017-09-11 07:27:11 +0800 |
---|---|---|
committer | ler <ler@FreeBSD.org> | 2017-09-11 07:27:11 +0800 |
commit | 9486b748abd9252898167dee92aa73c534a72383 (patch) | |
tree | 5ea39f0e8025ab162f7ee318defb502e7b602250 /sysutils | |
parent | 56a0c084f8561c66f48ba2c473fd9fa063f213d1 (diff) | |
download | freebsd-ports-gnome-9486b748abd9252898167dee92aa73c534a72383.tar.gz freebsd-ports-gnome-9486b748abd9252898167dee92aa73c534a72383.tar.zst freebsd-ports-gnome-9486b748abd9252898167dee92aa73c534a72383.zip |
sysutils/lsof: upgrade to 4.90P, which fixes the test suite for 64-bit dev_t, and
the bzero fix.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/lsof/Makefile | 3 | ||||
-rw-r--r-- | sysutils/lsof/distinfo | 6 | ||||
-rw-r--r-- | sysutils/lsof/files/patch-dialects_freebsd_dlsof.h | 16 |
3 files changed, 4 insertions, 21 deletions
diff --git a/sysutils/lsof/Makefile b/sysutils/lsof/Makefile index b4b01a03d951..29bd2c387504 100644 --- a/sysutils/lsof/Makefile +++ b/sysutils/lsof/Makefile @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= lsof -DISTVERSION= 4.90M +DISTVERSION= 4.90P PORTEPOCH= 8 -PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ \ ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/NEW/ \ diff --git a/sysutils/lsof/distinfo b/sysutils/lsof/distinfo index 4a9e44b258dd..52e75384d9f3 100644 --- a/sysutils/lsof/distinfo +++ b/sysutils/lsof/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1497206529 -SHA256 (lsof_4.90M.freebsd.tar.bz2) = 629c4652e94ca1fff1eeb2a5c6c42126efab6a75978daf07f69af569ae4376eb -SIZE (lsof_4.90M.freebsd.tar.bz2) = 488695 +TIMESTAMP = 1505085809 +SHA256 (lsof_4.90P.freebsd.tar.bz2) = 5a8f70036c3059b1c403d675d5e2641e8493cc4bf77f61893bde6e0fd3ada3b6 +SIZE (lsof_4.90P.freebsd.tar.bz2) = 488892 diff --git a/sysutils/lsof/files/patch-dialects_freebsd_dlsof.h b/sysutils/lsof/files/patch-dialects_freebsd_dlsof.h deleted file mode 100644 index 3f8973aa00fb..000000000000 --- a/sysutils/lsof/files/patch-dialects_freebsd_dlsof.h +++ /dev/null @@ -1,16 +0,0 @@ ---- dialects/freebsd/dlsof.h.orig 2017-09-10 14:02:39 UTC -+++ dialects/freebsd/dlsof.h -@@ -486,6 +486,13 @@ struct vop_advlock_args { int dummy; }; /* to pacify l - # endif /* FREEBSDV<5000 */ - # endif /* FREEBSDV>=2020 */ - -+/* -+ * Inclusion of kernel headers with _KERNEL specified causes a conflict with -+ * userspace. bzero is a macro, but is redefined to be a function in string.h -+ * Work around by just undefing. -+ */ -+#undef bzero -+ - #include <string.h> - - |