svn commit: r419394 - in branches/2016Q3/sysutils/atop: . files

Kurt Jaeger pi at FreeBSD.org
Sun Jul 31 16:49:19 UTC 2016


Author: pi
Date: Sun Jul 31 16:49:17 2016
New Revision: 419394
URL: https://svnweb.freebsd.org/changeset/ports/419394

Log:
  sysutils/atop: fix after r302904 due to flag rename (P_KPROC -> P_KTHREAD)
  
  PR:		211173
  MFH:		r419354
  Approved by:	ports-secteam (junovitch)

Added:
  branches/2016Q3/sysutils/atop/files/patch-atop.h
     - copied unchanged from r419354, head/sysutils/atop/files/patch-atop.h
Modified:
  branches/2016Q3/sysutils/atop/Makefile
Directory Properties:
  branches/2016Q3/   (props changed)

Modified: branches/2016Q3/sysutils/atop/Makefile
==============================================================================
--- branches/2016Q3/sysutils/atop/Makefile	Sun Jul 31 16:13:04 2016	(r419393)
+++ branches/2016Q3/sysutils/atop/Makefile	Sun Jul 31 16:49:17 2016	(r419394)
@@ -3,6 +3,7 @@
 
 PORTNAME=	atop
 PORTVERSION=	2.0.2.b3
+PORTREVISION=	1
 CATEGORIES=	sysutils
 
 MAINTAINER=	samm at os2.kiev.ua

Copied: branches/2016Q3/sysutils/atop/files/patch-atop.h (from r419354, head/sysutils/atop/files/patch-atop.h)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2016Q3/sysutils/atop/files/patch-atop.h	Sun Jul 31 16:49:17 2016	(r419394, copy of r419354, head/sysutils/atop/files/patch-atop.h)
@@ -0,0 +1,14 @@
+--- atop.h.orig	2014-01-15 16:05:34 UTC
++++ atop.h
+@@ -49,6 +49,11 @@ struct netpertask;
+ #define RRNETATOP	0x0004
+ #define RRNETATOPD	0x0008
+ 
++#include <sys/param.h>
++#if __FreeBSD_version > 1100116
++#define P_KTHREAD P_KPROC
++#endif
++
+ struct visualize {
+ 	char	(*show_samp)  (time_t, int,
+ 	                struct sstat *, struct tstat *, struct tstat **,


More information about the svn-ports-all mailing list