Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Dec 2019 18:58:40 +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: r519042 - head/lang/tcl87
Message-ID:  <201912041858.xB4IwemG023887@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Wed Dec  4 18:58:39 2019
New Revision: 519042
URL: https://svnweb.freebsd.org/changeset/ports/519042

Log:
  lang/tcl87: fix build on GCC architectures
  
  8.7.a3 requires C11 compiler:
  /wrkdirs/usr/ports/lang/tcl87/work/tcl8.7a3/compat/zlib/zconf.h:429: error: previous declaration of 'z_crc_t' was here
  
  Approved by:	mentors (implicit approval)

Modified:
  head/lang/tcl87/Makefile

Modified: head/lang/tcl87/Makefile
==============================================================================
--- head/lang/tcl87/Makefile	Wed Dec  4 18:33:06 2019	(r519041)
+++ head/lang/tcl87/Makefile	Wed Dec  4 18:58:39 2019	(r519042)
@@ -18,7 +18,7 @@ LICENSE_NAME=	Tcl/Tk License
 LICENSE_FILE=	${WRKSRC}/../license.terms
 LICENSE_PERMS=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
 
-USES=		pathfix
+USES=		compiler:c11 pathfix
 
 OPTIONS_DEFINE=	TCLMAN TZDATA DEBUG
 OPTIONS_DEFAULT=TCLMAN TZDATA



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