svn commit: r531342 - head/cad/graywolf

Piotr Kubaj pkubaj at FreeBSD.org
Fri Apr 10 21:44:00 UTC 2020


Author: pkubaj
Date: Fri Apr 10 21:43:59 2020
New Revision: 531342
URL: https://svnweb.freebsd.org/changeset/ports/531342

Log:
  cad/graywolf: fix build on GCC architectures
  
  C11 compiler is necessary:
  /wrkdirs/usr/ports/cad/graywolf/work/graywolf-0.1.6-3-g6c5e24f/src/twmc/wireratio.c:92: error: expected declaration specifiers before 'gsl_matrix'
  
  MFH:		2020Q2 (fix build blanket)

Modified:
  head/cad/graywolf/Makefile

Modified: head/cad/graywolf/Makefile
==============================================================================
--- head/cad/graywolf/Makefile	Fri Apr 10 21:33:59 2020	(r531341)
+++ head/cad/graywolf/Makefile	Fri Apr 10 21:43:59 2020	(r531342)
@@ -16,7 +16,7 @@ LICENSE=	GPLv2
 
 LIB_DEPENDS=	libgsl.so:math/gsl
 
-USES=		cmake pkgconfig xorg
+USES=		cmake compiler:c11 pkgconfig xorg
 USE_GITHUB=	yes
 GH_ACCOUNT=	rubund
 USE_XORG=	ice sm x11 xext


More information about the svn-ports-all mailing list