svn commit: r525832 - head/deskutils/kuserfeedback

Piotr Kubaj pkubaj at FreeBSD.org
Tue Feb 11 15:16:59 UTC 2020


Author: pkubaj
Date: Tue Feb 11 15:16:58 2020
New Revision: 525832
URL: https://svnweb.freebsd.org/changeset/ports/525832

Log:
  deskutils/kuserfeedback: fix build on GCC architectures
  
  C++11 compiler is required:
    The compiler feature "cxx_decltype" is not known to CXX compiler
  
    "GNU"
  
    version 4.2.1.

Modified:
  head/deskutils/kuserfeedback/Makefile

Modified: head/deskutils/kuserfeedback/Makefile
==============================================================================
--- head/deskutils/kuserfeedback/Makefile	Tue Feb 11 15:13:47 2020	(r525831)
+++ head/deskutils/kuserfeedback/Makefile	Tue Feb 11 15:16:58 2020	(r525832)
@@ -14,7 +14,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING.LIB
 BUILD_DEPENDS=	phpunit:devel/phpunit6@${PHP_FLAVOR}
 RUN_DEPENDS=	phpunit:devel/phpunit6@${PHP_FLAVOR}
 
-USES=		bison cmake kde:5 php qt:5 tar:xz
+USES=		bison cmake compiler:c++11-lang kde:5 php qt:5 tar:xz
 USE_KDE=	ecm
 USE_QT=		charts core declarative gui network printsupport svg widgets \
 		buildtools_build help_build qdoc_build qmake_build


More information about the svn-ports-all mailing list