svn commit: r513480 - head/editors/e93

Piotr Kubaj pkubaj at FreeBSD.org
Tue Oct 1 13:55:42 UTC 2019


Author: pkubaj
Date: Tue Oct  1 13:55:41 2019
New Revision: 513480
URL: https://svnweb.freebsd.org/changeset/ports/513480

Log:
  editors/e93: fix build on GCC architectures
  
  Use C11 compiler:
  In file included from includes.h:54,
                   from e93.c:17:
  varbind.h:14: error: redefinition of typedef 'VARIABLE_BINDING'
  defines.h:198: error: previous declaration of 'VARIABLE_BINDING' was here
  
  Approved by:	mentors (implicit approval)

Modified:
  head/editors/e93/Makefile

Modified: head/editors/e93/Makefile
==============================================================================
--- head/editors/e93/Makefile	Tue Oct  1 13:53:49 2019	(r513479)
+++ head/editors/e93/Makefile	Tue Oct  1 13:55:41 2019	(r513480)
@@ -13,7 +13,7 @@ COMMENT=	Tcl-based, programmer-oriented text editor
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/LICENSE.TXT
 
-USES=		tar:tgz tcl xorg
+USES=		compiler:c11 tar:tgz tcl xorg
 USE_XORG=	x11 xinerama xmu
 
 MAKE_ENV=	TCL_INCLUDEDIR=${TCL_INCLUDEDIR} TCL_VERSION=${TCL_SHLIB_VER}


More information about the svn-ports-head mailing list