Date: Fri, 26 Jul 2019 21:01:11 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r507373 - head/devel/nsync Message-ID: <201907262101.x6QL1BKO042803@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Fri Jul 26 21:01:10 2019 New Revision: 507373 URL: https://svnweb.freebsd.org/changeset/ports/507373 Log: devel/nsync: fix build on GCC architectures C++11 compiler is required: cc1plus: error: unrecognized command line option "-std=c++11" Approved by: mentors (implicit approval) Modified: head/devel/nsync/Makefile Modified: head/devel/nsync/Makefile ============================================================================== --- head/devel/nsync/Makefile Fri Jul 26 20:46:53 2019 (r507372) +++ head/devel/nsync/Makefile Fri Jul 26 21:01:10 2019 (r507373) @@ -10,7 +10,7 @@ COMMENT= C library that exports various synchronizatio LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= google USE_LDCONFIG= yes
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907262101.x6QL1BKO042803>