From owner-svn-ports-head@freebsd.org Fri Oct 2 16:22:54 2015 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 B8EB9A0E4ED; Fri, 2 Oct 2015 16:22:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 A920212A2; Fri, 2 Oct 2015 16:22:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t92GMsWH078137; Fri, 2 Oct 2015 16:22:54 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t92GMsC6078136; Fri, 2 Oct 2015 16:22:54 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201510021622.t92GMsC6078136@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 2 Oct 2015 16:22:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398438 - head/devel/sigar/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.20 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, 02 Oct 2015 16:22:54 -0000 Author: swills Date: Fri Oct 2 16:22:53 2015 New Revision: 398438 URL: https://svnweb.freebsd.org/changeset/ports/398438 Log: devel/sigar: fix build on 11-CURRENT after removal of v_cache_min/max Added: head/devel/sigar/files/ head/devel/sigar/files/patch-src_os_darwin_darwin__sigar.c (contents, props changed) Added: head/devel/sigar/files/patch-src_os_darwin_darwin__sigar.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sigar/files/patch-src_os_darwin_darwin__sigar.c Fri Oct 2 16:22:53 2015 (r398438) @@ -0,0 +1,13 @@ +--- src/os/darwin/darwin_sigar.c.orig 2014-11-17 21:46:20 UTC ++++ src/os/darwin/darwin_sigar.c +@@ -400,8 +400,10 @@ static int sigar_vmstat(sigar_t *sigar, + GET_VM_STATS(vm, v_inactive_target, 0); + GET_VM_STATS(vm, v_inactive_count, 1); + GET_VM_STATS(vm, v_cache_count, 1); ++#if (__FreeBSD_version < 1100079 ) + GET_VM_STATS(vm, v_cache_min, 0); + GET_VM_STATS(vm, v_cache_max, 0); ++#endif + GET_VM_STATS(vm, v_pageout_free_min, 0); + GET_VM_STATS(vm, v_interrupt_free_min, 0); + GET_VM_STATS(vm, v_forks, 0);