Module Name: src Committed By: riastradh Date: Sat May 13 11:11:39 UTC 2023
Modified Files: src/crypto/external/bsd/openssl/lib/libcryptotest: Makefile Log Message: libcryptotest: Suppress some warnings. Detected by clang aarch64 32-bit arm compat library build. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 \ src/crypto/external/bsd/openssl/lib/libcryptotest/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/crypto/external/bsd/openssl/lib/libcryptotest/Makefile diff -u src/crypto/external/bsd/openssl/lib/libcryptotest/Makefile:1.4 src/crypto/external/bsd/openssl/lib/libcryptotest/Makefile:1.5 --- src/crypto/external/bsd/openssl/lib/libcryptotest/Makefile:1.4 Sat May 6 17:07:23 2023 +++ src/crypto/external/bsd/openssl/lib/libcryptotest/Makefile Sat May 13 11:11:39 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2023/05/06 17:07:23 christos Exp $ +# $NetBSD: Makefile,v 1.5 2023/05/13 11:11:39 riastradh Exp $ LIBISPRIVATE= yes LIB= cryptotest @@ -36,4 +36,8 @@ testutil_init.c SRCS+= \ opt.c +COPTS.opt.c+= -Wno-missing-field-initializers +COPTS.options.c+= -Wno-format-nonliteral +COPTS.test_options.c+= -Wno-missing-field-initializers + .include <bsd.lib.mk>