The branch stable/14 has been updated by dim: URL: https://cgit.FreeBSD.org/src/commit/?id=1dfb2690ccee42c6af6320a2eb10875ae1c4bb0d
commit 1dfb2690ccee42c6af6320a2eb10875ae1c4bb0d Author: John Baldwin <j...@freebsd.org> AuthorDate: 2024-05-07 18:44:52 +0000 Commit: Dimitry Andric <d...@freebsd.org> CommitDate: 2024-09-08 12:03:17 +0000 libcbor: Ignore errors for unknown #pragmas libcbor embeds clang-specific #pragmas that GCC then warns about. Reviewed by: emaste (cherry picked from commit 6ca0468a2f23c82d6cdde2af1a42b62af3664766) --- lib/libcbor/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/libcbor/Makefile b/lib/libcbor/Makefile index 5ae2c34a5963..c9d86c0b95ad 100644 --- a/lib/libcbor/Makefile +++ b/lib/libcbor/Makefile @@ -30,6 +30,7 @@ SRCS+= cbor/internal/unicode.c CFLAGS+= -I${DIST}/src -I${.CURDIR} WARNS?= 2 +IGNORE_PRAGMA= MAN= .include <bsd.lib.mk>