From b8d1d29873576de6bba9283b22eacb627aad1e44 Mon Sep 17 00:00:00 2001 From: rakuco Date: Tue, 1 Aug 2017 09:01:14 +0000 Subject: Explicitly build with -std=gnu++03. This fixes the build with GCC 6, which defaults to -std=gnu++14. The project, which seems to be unmaintained upstream, is incompatible with C++11 and later. PR: 219298 Approved by: portmgr (blanket approval) --- irc/ezbounce/Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'irc') diff --git a/irc/ezbounce/Makefile b/irc/ezbounce/Makefile index c85bdec93cca..ea05bd579387 100644 --- a/irc/ezbounce/Makefile +++ b/irc/ezbounce/Makefile @@ -24,6 +24,10 @@ GNU_CONFIGURE= yes USES= gmake USE_GCC= any +# ezbounce 1.99.15 isn't compatible with C++11 and later, which some compilers +# such as GCC 6 default to. +USE_CXXSTD= gnu++03 + SUB_FILES= pkg-message post-patch: -- cgit