Date: Fri, 18 Aug 2017 12:21:44 +0000 (UTC) From: Raphael Kubo da Costa <rakuco@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448221 - head/cad/alliance Message-ID: <201708181221.v7ICLiO4011679@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rakuco Date: Fri Aug 18 12:21:43 2017 New Revision: 448221 URL: https://svnweb.freebsd.org/changeset/ports/448221 Log: Explicitly pass -std=gnu++03 to the compiler. This fixes the build with GCC 6, which defaults to -std=gnu++14. The port's code does not work with C++11 or later. PR: 219275 Modified: head/cad/alliance/Makefile Modified: head/cad/alliance/Makefile ============================================================================== --- head/cad/alliance/Makefile Fri Aug 18 12:19:27 2017 (r448220) +++ head/cad/alliance/Makefile Fri Aug 18 12:21:43 2017 (r448221) @@ -33,6 +33,9 @@ CONFIGURE_ENV+= ALLIANCE_TOP=${ALLIANCE_TOP} CONFIGURE_ARGS+=--mandir=${MANPREFIX}/man \ --prefix=${ALLIANCE_TOP} +# The port does not build with C++11 or later (bug 219275). +USE_CXXSTD= gnu++03 + MAKE_JOBS_UNSAFE= yes post-patch:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708181221.v7ICLiO4011679>