svn commit: r500498 - head/benchmarks/sipp

Piotr Kubaj pkubaj at FreeBSD.org
Tue Apr 30 14:31:43 UTC 2019


Author: pkubaj
Date: Tue Apr 30 14:31:42 2019
New Revision: 500498
URL: https://svnweb.freebsd.org/changeset/ports/500498

Log:
  benchmarks/sipp: fix build with GCC-based architectures
  
  Add USES=compiler:c++11-lang to fix:stat.hpp:307: error: ISO C++ does not support long long
  
  PR:		237554
  Approved by:	farrokhi (maintainer), mat (mentor)
  Differential Revision:	https://reviews.freebsd.org/D20087

Modified:
  head/benchmarks/sipp/Makefile

Modified: head/benchmarks/sipp/Makefile
==============================================================================
--- head/benchmarks/sipp/Makefile	Tue Apr 30 14:29:20 2019	(r500497)
+++ head/benchmarks/sipp/Makefile	Tue Apr 30 14:31:42 2019	(r500498)
@@ -12,13 +12,9 @@ COMMENT=	SIP benchmarking and testing tool
 
 LICENSE=	GPLv2
 
-BROKEN_mips=		fails to compile: stat.hpp:307: error: ISO C++ does not support long long
-BROKEN_mips64=		fails to compile: stat.hpp:307: error: ISO C++ does not support long long
-BROKEN_powerpc64=	fails to compile: stat.hpp:307: error: ISO C++ does not support long long
-
 BUILD_DEPENDS=	help2man:misc/help2man
 
-USES=		autoreconf gmake ncurses pkgconfig
+USES=		autoreconf compiler:c++11-lang gmake ncurses pkgconfig
 
 PLIST_FILES=	bin/sipp man/man1/sipp.1.gz
 


More information about the svn-ports-head mailing list