svn commit: r503923 - head/devel/libthmap

Mark Linimon linimon at FreeBSD.org
Mon Jun 10 19:28:53 UTC 2019


Author: linimon
Date: Mon Jun 10 19:28:52 2019
New Revision: 503923
URL: https://svnweb.freebsd.org/changeset/ports/503923

Log:
  Add compiler:c11 to USES to fix the following build problem on GCC-based
  architectures:
  
    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/libthmap/Makefile

Modified: head/devel/libthmap/Makefile
==============================================================================
--- head/devel/libthmap/Makefile	Mon Jun 10 19:21:44 2019	(r503922)
+++ head/devel/libthmap/Makefile	Mon Jun 10 19:28:52 2019	(r503923)
@@ -10,7 +10,7 @@ COMMENT=	Concurrent trie-hash map 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-head mailing list