Date: Mon, 10 Jun 2019 19:28:52 +0000 (UTC) From: Mark Linimon <linimon@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r503923 - head/devel/libthmap Message-ID: <201906101928.x5AJSq75015848@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906101928.x5AJSq75015848>