Module Name: src Committed By: rillig Date: Thu Feb 27 23:48:22 UTC 2025
Modified Files: src/usr.sbin/racoon: Makefile Log Message: racoon: suppress lint warning about C23 compatibility The code needs to be fixed by upstream. To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 src/usr.sbin/racoon/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.sbin/racoon/Makefile diff -u src/usr.sbin/racoon/Makefile:1.43 src/usr.sbin/racoon/Makefile:1.44 --- src/usr.sbin/racoon/Makefile:1.43 Sat Jun 3 08:53:01 2023 +++ src/usr.sbin/racoon/Makefile Thu Feb 27 23:48:22 2025 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2023/06/03 08:53:01 lukem Exp $ +# $NetBSD: Makefile,v 1.44 2025/02/27 23:48:22 rillig Exp $ WARNS?= 0 # XXX third-party program, many issues NOCLANGERROR= # defined @@ -89,5 +89,7 @@ COPTS.rsalist.c+= -Wno-error=deprecated- COPTS.prsa_par.c+= -Wno-error=deprecated-declarations COPTS.plainrsa-gen.c+= -Wno-error=deprecated-declarations +# Has to be fixed upstream. +LINTFLAGS+= -X 384 # function definition with identifier list .include <bsd.prog.mk>