svn commit: r539495 - head/math/cglm

Mark Linimon linimon at FreeBSD.org
Wed Jun 17 20:19:24 UTC 2020


Author: linimon
Date: Wed Jun 17 20:19:23 2020
New Revision: 539495
URL: https://svnweb.freebsd.org/changeset/ports/539495

Log:
  Add compiler:c11 to USES to fix build on GCC-based systems:
  
    CMake Error in CMakeLists.txt:
    Target "cglm" requires the language dialect "C11" (with compiler
    extensions), but CMake does not know the compile flags to use to enable it.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/math/cglm/Makefile

Modified: head/math/cglm/Makefile
==============================================================================
--- head/math/cglm/Makefile	Wed Jun 17 20:15:21 2020	(r539494)
+++ head/math/cglm/Makefile	Wed Jun 17 20:19:23 2020	(r539495)
@@ -11,7 +11,7 @@ COMMENT=	Highly optimized graphics math (glm) for C
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		cmake
+USES=		cmake compiler:c11
 USE_GITHUB=	yes
 GH_ACCOUNT=	recp
 USE_LDCONFIG=	yes


More information about the svn-ports-all mailing list