Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Apr 2020 12:23:46 +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: r530972 - head/devel/samurai
Message-ID:  <202004071223.037CNkGO090805@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Tue Apr  7 12:23:46 2020
New Revision: 530972
URL: https://svnweb.freebsd.org/changeset/ports/530972

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

Modified:
  head/devel/samurai/Makefile

Modified: head/devel/samurai/Makefile
==============================================================================
--- head/devel/samurai/Makefile	Tue Apr  7 12:13:17 2020	(r530971)
+++ head/devel/samurai/Makefile	Tue Apr  7 12:23:46 2020	(r530972)
@@ -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



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