From owner-svn-ports-all@freebsd.org Sun Sep 4 13:23:19 2016 Return-Path: Delivered-To: svn-ports-all@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 BA1FDA9DE99; Sun, 4 Sep 2016 13:23:19 +0000 (UTC) (envelope-from amdmi3@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 8A45224F; Sun, 4 Sep 2016 13:23:19 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u84DNIdn057829; Sun, 4 Sep 2016 13:23:18 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u84DNIBW057826; Sun, 4 Sep 2016 13:23:18 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609041323.u84DNIBW057826@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 4 Sep 2016 13:23:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421335 - in head/sysutils/intel-pcm: . 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-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Sep 2016 13:23:19 -0000 Author: amdmi3 Date: Sun Sep 4 13:23:18 2016 New Revision: 421335 URL: https://svnweb.freebsd.org/changeset/ports/421335 Log: - Fix compiler requirements, add missing include, fixes build on 11.x+ Approved by: portmgr blanket Added: head/sysutils/intel-pcm/files/patch-pci.cpp (contents, props changed) Modified: head/sysutils/intel-pcm/Makefile Modified: head/sysutils/intel-pcm/Makefile ============================================================================== --- head/sysutils/intel-pcm/Makefile Sun Sep 4 13:23:04 2016 (r421334) +++ head/sysutils/intel-pcm/Makefile Sun Sep 4 13:23:18 2016 (r421335) @@ -12,7 +12,7 @@ COMMENT= Intel PCM toolkit LICENSE= BSD3CLAUSE -USES= compiler:c++11-lang gmake tar:xz +USES= compiler:c++11-lib gmake tar:xz ONLY_FOR_ARCHS= i386 amd64 Added: head/sysutils/intel-pcm/files/patch-pci.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/intel-pcm/files/patch-pci.cpp Sun Sep 4 13:23:18 2016 (r421335) @@ -0,0 +1,10 @@ +--- pci.cpp.orig 2016-04-20 10:01:09 UTC ++++ pci.cpp +@@ -20,6 +20,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIG + #include + #include + #include ++#include // for bzero() + #include "pci.h" + + #ifndef _MSC_VER