Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Jun 2019 16:42:58 +0000 (UTC)
From:      Christian Weisgerber <naddy@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r505439 - head/shells/yash
Message-ID:  <201906301642.x5UGgwb5096214@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: naddy
Date: Sun Jun 30 16:42:57 2019
New Revision: 505439
URL: https://svnweb.freebsd.org/changeset/ports/505439

Log:
  Yash is explicitly written in C99.  GCC 4.2 can handle this without
  requiring a C11 compiler.

Modified:
  head/shells/yash/Makefile

Modified: head/shells/yash/Makefile
==============================================================================
--- head/shells/yash/Makefile	Sun Jun 30 16:14:16 2019	(r505438)
+++ head/shells/yash/Makefile	Sun Jun 30 16:42:57 2019	(r505439)
@@ -11,10 +11,11 @@ COMMENT=	POSIX-compliant command line shell
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		compiler:c11 tar:xz
+USES=		tar:xz
 
 HAS_CONFIGURE=	yes
 CONFIGURE_ARGS=	--prefix=${PREFIX} --mandir=${MANPREFIX}/man
+CPPFLAGS+=	-std=c99
 
 OPTIONS_DEFINE=	NLS
 OPTIONS_SUB=	yes



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