aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2020-03-05 22:45:16 +0000
committerKyle Evans <kevans@FreeBSD.org>2020-03-05 22:45:16 +0000
commit924e10b809a9fcbc8688c1b5848f60b48e6103fe (patch)
treec30940e090aa3dba9a2686ffb5869dbb5bb2d17a /libexec
parent3f16af55b26d45dd8ab921f518fe207f27a9b4c0 (diff)
downloadsrc-924e10b809a9fcbc8688c1b5848f60b48e6103fe.tar.gz
src-924e10b809a9fcbc8688c1b5848f60b48e6103fe.zip
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
Notes
Notes: svn path=/head/; revision=358687
Diffstat (limited to 'libexec')
-rw-r--r--libexec/tftpd/tests/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/libexec/tftpd/tests/Makefile b/libexec/tftpd/tests/Makefile
index 06c5537372a7..9aa420cec1a5 100644
--- a/libexec/tftpd/tests/Makefile
+++ b/libexec/tftpd/tests/Makefile
@@ -10,5 +10,6 @@ TEST_METADATA.functional+= timeout=15
LIBADD= util
WARNS?= 6
+CSTD= c11
.include <bsd.test.mk>