Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Jun 2021 12:08:14 GMT
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: b5fb5e762065 - main - irc/pounce: fix build on GCC-based systems
Message-ID:  <202106071208.157C8E81047377@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by linimon:

URL: https://cgit.FreeBSD.org/ports/commit/?id=b5fb5e762065f020805a6379f08a460e1ea80333

commit b5fb5e762065f020805a6379f08a460e1ea80333
Author:     Mark Linimon <linimon@FreeBSD.org>
AuthorDate: 2021-06-07 12:07:25 +0000
Commit:     Mark Linimon <linimon@FreeBSD.org>
CommitDate: 2021-06-07 12:07:25 +0000

    irc/pounce: fix build on GCC-based systems
    
    by adding compiler:c11 to USES:
    
      cc1: error: unrecognized command line option "-Wpedantic"
      cc1: error: unrecognized command line option "-std=c11"
---
 irc/pounce/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/irc/pounce/Makefile b/irc/pounce/Makefile
index e2f105502db3..8a743ff3efd0 100644
--- a/irc/pounce/Makefile
+++ b/irc/pounce/Makefile
@@ -9,7 +9,7 @@ COMMENT=	Multi-client IRC bouncer
 LICENSE=	GPLv3+
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		localbase:ldflags ssl
+USES=		compiler:c11 localbase:ldflags ssl
 USE_RC_SUBR=	calico pounce
 
 MAKE_ENV+=	MANDIR=${MANPREFIX}/man



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202106071208.157C8E81047377>