svn commit: r566195 - head/irc/catgirl

Mark Linimon linimon at FreeBSD.org
Sat Feb 20 23:14:07 UTC 2021


Author: linimon
Date: Sat Feb 20 23:14:06 2021
New Revision: 566195
URL: https://svnweb.freebsd.org/changeset/ports/566195

Log:
  Add compiler:c++11-lang to USES to fix build on GCC-based systems:
  
    cc1: error: unrecognized command line option "-Wpedantic"
    cc1: error: unrecognized command line option "-Wno-gnu-case-range"
    cc1: error: unrecognized command line option "-Wno-gnu-conditional-omitted-operand"
    cc1: error: unrecognized command line option "-std=c11"
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/irc/catgirl/Makefile

Modified: head/irc/catgirl/Makefile
==============================================================================
--- head/irc/catgirl/Makefile	Sat Feb 20 23:10:39 2021	(r566194)
+++ head/irc/catgirl/Makefile	Sat Feb 20 23:14:06 2021	(r566195)
@@ -11,7 +11,7 @@ COMMENT=	TLS-only terminal IRC client
 LICENSE=	GPLv3+
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		ncurses pkgconfig ssl
+USES=		compiler:c++11-lang ncurses pkgconfig ssl
 
 HAS_CONFIGURE=	yes
 CONFIGURE_ARGS=	--prefix=${PREFIX} --mandir=${MANPREFIX}/man


More information about the svn-ports-all mailing list