aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cad/freehdl/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/cad/freehdl/Makefile b/cad/freehdl/Makefile
index 93754b3efd21..71acf082050c 100644
--- a/cad/freehdl/Makefile
+++ b/cad/freehdl/Makefile
@@ -17,6 +17,12 @@ GNU_CONFIGURE= yes
CONFIGURE_ARGS= SYSTEM_LIBTOOL=${FALSE}
INSTALL_TARGET= install-strip
+# Bug 219297: GCC 6 changed its default from -std=gnu++03 to -std=gnu++14, and
+# this port's code is not compatible with C++11. Since the project looks
+# abandoned upstream, it makes more sense to just continue building with an
+# older C++ standard.
+USE_CXXSTD= gnu++03
+
INFO= fire
.include <bsd.port.mk>