diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2021-02-21 07:14:06 +0800 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2021-02-21 07:14:06 +0800 |
commit | 03a191cf3a83f837468d286e119de33b87242384 (patch) | |
tree | 45f24fe4fb37d469ee1e694b85ae4f7229545c95 /irc/catgirl/Makefile | |
parent | 51d7ac237777e5dc20c61579dbefab962529aa8e (diff) | |
download | freebsd-ports-gnome-03a191cf3a83f837468d286e119de33b87242384.tar.gz freebsd-ports-gnome-03a191cf3a83f837468d286e119de33b87242384.tar.zst freebsd-ports-gnome-03a191cf3a83f837468d286e119de33b87242384.zip |
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)
Diffstat (limited to 'irc/catgirl/Makefile')
-rw-r--r-- | irc/catgirl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/irc/catgirl/Makefile b/irc/catgirl/Makefile index 464e2dad3b80..819de435a415 100644 --- a/irc/catgirl/Makefile +++ b/irc/catgirl/Makefile @@ -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 |