Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 5 Mar 2020 22:45:16 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r358687 - head/libexec/tftpd/tests
Message-ID:  <202003052245.025MjHZG046508@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans
Date: Thu Mar  5 22:45:16 2020
New Revision: 358687
URL: https://svnweb.freebsd.org/changeset/base/358687

Log:
  tftpd: tests: raise targeted cstd to c11
  
  r358556 added alignas() use to the functional tests, which isn't defined
  until C11. Raise the -std to C11 to fix the build under freebsd-gcc{6,9}.
  
  Reported by:	mhorne, Jenkins/CI

Modified:
  head/libexec/tftpd/tests/Makefile

Modified: head/libexec/tftpd/tests/Makefile
==============================================================================
--- head/libexec/tftpd/tests/Makefile	Thu Mar  5 21:01:47 2020	(r358686)
+++ head/libexec/tftpd/tests/Makefile	Thu Mar  5 22:45:16 2020	(r358687)
@@ -10,5 +10,6 @@ TEST_METADATA.functional+=	timeout=15
 
 LIBADD=	util
 WARNS?=	6
+CSTD=	c11
 
 .include <bsd.test.mk>



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