From owner-svn-ports-head@freebsd.org Fri Sep 16 04:27:53 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 144CABDC506; Fri, 16 Sep 2016 04:27:53 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BF53DE6A; Fri, 16 Sep 2016 04:27:52 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8G4RpsG031372; Fri, 16 Sep 2016 04:27:51 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8G4RpvM031369; Fri, 16 Sep 2016 04:27:51 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201609160427.u8G4RpvM031369@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Fri, 16 Sep 2016 04:27:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422236 - in head/sysutils/pftop: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 04:27:53 -0000 Author: araujo Date: Fri Sep 16 04:27:51 2016 New Revision: 422236 URL: https://svnweb.freebsd.org/changeset/ports/422236 Log: - Fix build on powerpc64. - Bump PORTREVISION. Submitted by: demik475_gmail.com Differential Revision: https://reviews.freebsd.org/D7862 Added: head/sysutils/pftop/files/patch-bpf_filter.c (contents, props changed) head/sysutils/pftop/files/patch-bpf_image.c (contents, props changed) Modified: head/sysutils/pftop/Makefile Modified: head/sysutils/pftop/Makefile ============================================================================== --- head/sysutils/pftop/Makefile Thu Sep 15 23:46:16 2016 (r422235) +++ head/sysutils/pftop/Makefile Fri Sep 16 04:27:51 2016 (r422236) @@ -3,15 +3,13 @@ PORTNAME= pftop PORTVERSION= 0.7 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= sysutils net MASTER_SITES= http://www.eee.metu.edu.tr/~canacar/ MAINTAINER= araujo@FreeBSD.org COMMENT= Utility for real-time display of statistics for pf -BROKEN_powerpc64= Does not build - .include .if ${OSVERSION} >= 1100080 Added: head/sysutils/pftop/files/patch-bpf_filter.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/pftop/files/patch-bpf_filter.c Fri Sep 16 04:27:51 2016 (r422236) @@ -0,0 +1,13 @@ +--- bpf_filter.c.orig 2016-09-12 16:50:11.454297000 +0200 ++++ bpf_filter.c 2016-09-12 16:43:28.150188000 +0200 +@@ -143,8 +143,8 @@ + */ + u_int + bpf_filter(pc, p, wirelen, buflen) +- struct bpf_insn *pc; +- u_char *p; ++ const struct bpf_insn *pc; ++ const u_char *p; + u_int wirelen; + u_int buflen; + { Added: head/sysutils/pftop/files/patch-bpf_image.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/pftop/files/patch-bpf_image.c Fri Sep 16 04:27:51 2016 (r422236) @@ -0,0 +1,11 @@ +--- bpf_image.c.orig 2016-09-12 16:51:21.704680000 +0200 ++++ bpf_image.c 2016-09-12 16:43:28.038646000 +0200 +@@ -36,7 +36,7 @@ + + char * + bpf_image(p, n) +- struct bpf_insn *p; ++ const struct bpf_insn *p; + int n; + { + int v;