svn commit: r501008 - head/math/gh-bc

Piotr Kubaj pkubaj at FreeBSD.org
Wed May 8 08:58:24 UTC 2019


Author: pkubaj
Date: Wed May  8 08:58:23 2019
New Revision: 501008
URL: https://svnweb.freebsd.org/changeset/ports/501008

Log:
  math/gh-bc: fix build with GCC-based architectures
  
  Add USES=compiler:c11 to fix build:
  ./src/num.c:1305: error: expected ';', ',' or ')' before 'n'
  
  Approved by:	mentors (implicit approval)

Modified:
  head/math/gh-bc/Makefile

Modified: head/math/gh-bc/Makefile
==============================================================================
--- head/math/gh-bc/Makefile	Wed May  8 08:44:38 2019	(r501007)
+++ head/math/gh-bc/Makefile	Wed May  8 08:58:23 2019	(r501008)
@@ -11,6 +11,7 @@ COMMENT=	GNU compatible bc/dc calculator
 LICENSE=	BSD2CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE.md
 
+USES=		compiler:c11
 USE_GITHUB=	yes
 GH_ACCOUNT=	gavinhoward
 


More information about the svn-ports-all mailing list