svn commit: r503601 - head/editors/neovim-qt

Piotr Kubaj pkubaj at FreeBSD.org
Thu Jun 6 21:02:42 UTC 2019


Author: pkubaj
Date: Thu Jun  6 21:02:41 2019
New Revision: 503601
URL: https://svnweb.freebsd.org/changeset/ports/503601

Log:
  editors/neovim-qt: fix build
  
  Add USES=compiler:c++11-lang to fix:
  CMake Error in src/CMakeLists.txt:
    The compiler feature "cxx_decltype" is not known to CXX compiler
  
    "GNU"
  
    version 4.2.1.
  
  Approved by:	mentors (implicit approval)

Modified:
  head/editors/neovim-qt/Makefile

Modified: head/editors/neovim-qt/Makefile
==============================================================================
--- head/editors/neovim-qt/Makefile	Thu Jun  6 20:02:19 2019	(r503600)
+++ head/editors/neovim-qt/Makefile	Thu Jun  6 21:02:41 2019	(r503601)
@@ -15,7 +15,7 @@ BUILD_DEPENDS=	neovim>=0:editors/neovim
 LIB_DEPENDS=	libmsgpackc.so:devel/msgpack
 RUN_DEPENDS=	neovim>=0:editors/neovim
 
-USES=		cmake desktop-file-utils qt:5
+USES=		cmake compiler:c++11-lang desktop-file-utils qt:5
 USE_GITHUB=	yes
 GH_ACCOUNT=	equalsraf
 USE_QT=		core gui testlib network widgets buildtools_build qmake_build


More information about the svn-ports-all mailing list