svn commit: r509405 - head/security/honggfuzz

Piotr Kubaj pkubaj at FreeBSD.org
Tue Aug 20 04:01:16 UTC 2019


Author: pkubaj
Date: Tue Aug 20 04:01:16 2019
New Revision: 509405
URL: https://svnweb.freebsd.org/changeset/ports/509405

Log:
  security/honggfuzz: fix build on GCC architectures
  
  This port requires C11 compiler:
  cc1: error: unrecognized command line option "-std=gnu11"
  
  Approved by:	mentors (implicit approval)

Modified:
  head/security/honggfuzz/Makefile

Modified: head/security/honggfuzz/Makefile
==============================================================================
--- head/security/honggfuzz/Makefile	Tue Aug 20 03:50:06 2019	(r509404)
+++ head/security/honggfuzz/Makefile	Tue Aug 20 04:01:16 2019	(r509405)
@@ -11,11 +11,7 @@ COMMENT=	General-purpose fuzzer with simple, command-l
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-BROKEN_mips=		fails to compile: cc1: error: unrecognized command line option -Wframe-larger-than=131072
-BROKEN_mips64=		fails to compile: cc1: error: unrecognized command line option -Wframe-larger-than=131072
-BROKEN_powerpc64=	fails to compile: cc1: error: unrecognized command line option -Wframe-larger-than=131072
-
-USES=		gmake
+USES=		compiler:c11 gmake
 USE_GITHUB=	yes
 GH_ACCOUNT=	google
 GC_TAGNAME=	6d01e82


More information about the svn-ports-all mailing list