svn commit: r530973 - branches/2020Q2/devel/samurai

Piotr Kubaj pkubaj at FreeBSD.org
Tue Apr 7 12:25:17 UTC 2020


Author: pkubaj
Date: Tue Apr  7 12:25:16 2020
New Revision: 530973
URL: https://svnweb.freebsd.org/changeset/ports/530973

Log:
  MFH: r530972
  
  devel/samurai: fix build on GCC architectures
  
  GCC 4.2 doesn't support -Wpedantic:
  cc1: error: unrecognized command line option "-Wpedantic"
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q2/devel/samurai/Makefile
Directory Properties:
  branches/2020Q2/   (props changed)

Modified: branches/2020Q2/devel/samurai/Makefile
==============================================================================
--- branches/2020Q2/devel/samurai/Makefile	Tue Apr  7 12:23:46 2020	(r530972)
+++ branches/2020Q2/devel/samurai/Makefile	Tue Apr  7 12:25:16 2020	(r530973)
@@ -13,6 +13,8 @@ LICENSE_COMB=	multi
 LICENSE_FILE_APACHE20=	${WRKSRC}/LICENSE
 LICENSE_FILE_MIT=	${WRKSRC}/LICENSE
 
+USES=		compiler:c11
+
 ALL_TARGET=	samu
 PLIST_FILES=	bin/samu \
 		man/man1/samu.1.gz


More information about the svn-ports-all mailing list