Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 Oct 2019 13:55:41 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r513480 - head/editors/e93
Message-ID:  <201910011355.x91Dtfsg004299@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910011355.x91Dtfsg004299>