svn commit: r512136 - head/devel/libversion

Mark Linimon linimon at FreeBSD.org
Mon Sep 16 00:48:01 UTC 2019


Author: linimon
Date: Mon Sep 16 00:48:01 2019
New Revision: 512136
URL: https://svnweb.freebsd.org/changeset/ports/512136

Log:
  Fix build on GCC-based systems:
  
    CMake Error in utils/version_sort/CMakeLists.txt: Target "version_sort"
    requires the language dialect "CXX11" , but CMake does not know the
    compile flags to use to enable it.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/devel/libversion/Makefile

Modified: head/devel/libversion/Makefile
==============================================================================
--- head/devel/libversion/Makefile	Sun Sep 15 23:18:47 2019	(r512135)
+++ head/devel/libversion/Makefile	Mon Sep 16 00:48:01 2019	(r512136)
@@ -14,7 +14,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 USE_GITHUB=	yes
 GH_ACCOUNT=	repology
 
-USES=		cmake
+USES=		cmake compiler:c++11-lang
 USE_LDCONFIG=	yes
 TEST_TARGET=	test
 PORTDOCS=	*


More information about the svn-ports-head mailing list