svn commit: r421335 - in head/sysutils/intel-pcm: . files

Dmitry Marakasov amdmi3 at FreeBSD.org
Sun Sep 4 13:23:19 UTC 2016


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 <sys/types.h>
+ #include <sys/stat.h>
+ #include <fcntl.h>
++#include <strings.h> // for bzero()
+ #include "pci.h"
+ 
+ #ifndef _MSC_VER


More information about the svn-ports-all mailing list