Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 31 Jul 2016 16:49:17 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r419394 - in branches/2016Q3/sysutils/atop: . files
Message-ID:  <201607311649.u6VGnHJ5049320@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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 **,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607311649.u6VGnHJ5049320>