svn commit: r504089 - head/devel/libqsbr

Mark Linimon linimon at FreeBSD.org
Thu Jun 13 12:56:34 UTC 2019


Author: linimon
Date: Thu Jun 13 12:56:33 2019
New Revision: 504089
URL: https://svnweb.freebsd.org/changeset/ports/504089

Log:
  Add compiler:c11 to USES to fix build on GCC-based systems:
  
    cc1: error: unrecognized command line option "-Wno-unknown-warning-option"
    cc1: error: unrecognized command line option "-Wsuggest-attribute=noreturn"
    cc1: error: unrecognized command line option "-Wjump-misses-init"
    cc1: error: unrecognized command line option "-std=c11"
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/devel/libqsbr/Makefile

Modified: head/devel/libqsbr/Makefile
==============================================================================
--- head/devel/libqsbr/Makefile	Thu Jun 13 12:53:20 2019	(r504088)
+++ head/devel/libqsbr/Makefile	Thu Jun 13 12:56:33 2019	(r504089)
@@ -10,7 +10,7 @@ COMMENT=	QSBR and EBR library
 LICENSE=	BSD2CLAUSE
 LICENSE_FILE=	${WRKSRC}/../LICENSE
 
-USES=		gmake libtool:build
+USES=		compiler:c11 gmake libtool:build
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	rmind


More information about the svn-ports-all mailing list