svn commit: r506915 - head/devel/snorenotify

Piotr Kubaj pkubaj at FreeBSD.org
Fri Jul 19 08:54:49 UTC 2019


Author: pkubaj
Date: Fri Jul 19 08:54:47 2019
New Revision: 506915
URL: https://svnweb.freebsd.org/changeset/ports/506915

Log:
  devel/snorenotify: fix build on GCC architectures
  
  Needs C++11 compiler:
    The compiler feature "cxx_decltype" is not known to CXX compiler
  
  Approved by:	mentors (implicit approval)

Modified:
  head/devel/snorenotify/Makefile

Modified: head/devel/snorenotify/Makefile
==============================================================================
--- head/devel/snorenotify/Makefile	Fri Jul 19 08:49:33 2019	(r506914)
+++ head/devel/snorenotify/Makefile	Fri Jul 19 08:54:47 2019	(r506915)
@@ -12,7 +12,7 @@ COMMENT=	Multi platform Qt notification framework
 LICENSE=	LGPL3
 LICENSE_FILE=	${WRKSRC}/COPYING.LGPL-3
 
-USES=		cmake kde:5 qt:5
+USES=		cmake compiler:c++11-lang kde:5 qt:5
 USE_KDE=	ecm
 USE_QT=		core dbus gui network widgets buildtools_build qmake_build
 USE_GITHUB=	yes


More information about the svn-ports-all mailing list