svn commit: r542756 - branches/2020Q3/cad/caneda

Piotr Kubaj pkubaj at FreeBSD.org
Tue Jul 21 16:57:07 UTC 2020


Author: pkubaj
Date: Tue Jul 21 16:57:06 2020
New Revision: 542756
URL: https://svnweb.freebsd.org/changeset/ports/542756

Log:
  MFH: r542755
  
  cad/caneda: fix build on GCC architectures
  
  Use C++11 compiler:
    The compiler feature "cxx_decltype" is not known to CXX compiler
  
    "GNU"
  
    version 4.2.1.
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q3/cad/caneda/Makefile
Directory Properties:
  branches/2020Q3/   (props changed)

Modified: branches/2020Q3/cad/caneda/Makefile
==============================================================================
--- branches/2020Q3/cad/caneda/Makefile	Tue Jul 21 16:45:02 2020	(r542755)
+++ branches/2020Q3/cad/caneda/Makefile	Tue Jul 21 16:57:06 2020	(r542756)
@@ -13,7 +13,8 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 LIB_DEPENDS=	libqwt6.so:x11-toolkits/qwt6
 
-USES=		cmake desktop-file-utils qt:5 shared-mime-info
+USES=		cmake compiler:c++11-lang desktop-file-utils qt:5 \
+		shared-mime-info
 USE_GITHUB=	yes
 GH_ACCOUNT=	Caneda
 GH_PROJECT=	Caneda


More information about the svn-ports-all mailing list