svn commit: r505567 - head/editors/xcoral

Piotr Kubaj pkubaj at FreeBSD.org
Mon Jul 1 12:50:18 UTC 2019


Author: pkubaj
Date: Mon Jul  1 12:50:17 2019
New Revision: 505567
URL: https://svnweb.freebsd.org/changeset/ports/505567

Log:
  editors/xcoral: fix build
  
  Add USES=compiler:c11 to fix build:
  BR_Parser.y:1652: error: argument 'file_name' doesn't match prototype
  BR_Interface.h:101: error: prototype declaration
  
  Approved by:	mentors (implicit approval)

Modified:
  head/editors/xcoral/Makefile

Modified: head/editors/xcoral/Makefile
==============================================================================
--- head/editors/xcoral/Makefile	Mon Jul  1 11:29:57 2019	(r505566)
+++ head/editors/xcoral/Makefile	Mon Jul  1 12:50:17 2019	(r505567)
@@ -16,7 +16,7 @@ COMMENT=	Multiwindow mouse-based text editor for X
 LICENSE=	GPLv2
 
 USE_XORG=	x11
-USES=		bison
+USES=		bison compiler:c11
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--libdir=${PREFIX}/share
 LIBS+=		-lgnuregex


More information about the svn-ports-head mailing list