Date: Thu, 29 Aug 2019 19:41:01 +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: r510184 - head/devel/grantlee5 Message-ID: <201908291941.x7TJf1dW097404@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Thu Aug 29 19:41:00 2019 New Revision: 510184 URL: https://svnweb.freebsd.org/changeset/ports/510184 Log: devel/grantlee5: fix build with GCC architectures Compiling with GCC9 fails with: /usr/local/lib/gcc9/include/c++/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options. Add USE_CXXSTD=c++11 to fix this. PR: 240081 Approved by: tcberner (maintainer), linimon (mentor) Modified: head/devel/grantlee5/Makefile Modified: head/devel/grantlee5/Makefile ============================================================================== --- head/devel/grantlee5/Makefile Thu Aug 29 19:39:58 2019 (r510183) +++ head/devel/grantlee5/Makefile Thu Aug 29 19:41:00 2019 (r510184) @@ -17,6 +17,7 @@ PORTSCOUT= limit:^5\. USE_QT= buildtools_build core gui qmake_build script USES= cmake compiler:c++11-lib grantlee:5,selfbuild qt:5 +USE_CXXSTD= c++11 CMAKE_ARGS+= -DBUILD_TESTS:BOOL=FALSE USE_LDCONFIG= yes
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908291941.x7TJf1dW097404>