svn commit: r505439 - head/shells/yash

Christian Weisgerber naddy at FreeBSD.org
Sun Jun 30 16:42:59 UTC 2019


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


More information about the svn-ports-all mailing list