Module Name: src Committed By: riastradh Date: Thu May 25 19:12:42 UTC 2023
Modified Files: src/crypto: Makefile.openssl Log Message: openssl: Note that -Wno-error=char-subscripts likely masks real bugs. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/crypto/Makefile.openssl Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/crypto/Makefile.openssl diff -u src/crypto/Makefile.openssl:1.17 src/crypto/Makefile.openssl:1.18 --- src/crypto/Makefile.openssl:1.17 Thu May 25 19:12:06 2023 +++ src/crypto/Makefile.openssl Thu May 25 19:12:42 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.openssl,v 1.17 2023/05/25 19:12:06 riastradh Exp $ +# $NetBSD: Makefile.openssl,v 1.18 2023/05/25 19:12:42 riastradh Exp $ .ifndef _MAKEFILE_OPENSSL_INCLUDED _MAKEFILE_OPENSSL_INCLUDED=1 @@ -8,7 +8,8 @@ WARNS=3 # would require changing a lot of code COPTS+= -Wno-error=cast-qual -COPTS+= -Wno-error=missing-field-initializers -Wno-error=char-subscripts +COPTS+= -Wno-error=char-subscripts # XXX likely real ctype(3) missing cast bugs +COPTS+= -Wno-error=missing-field-initializers COPTS+= -Wno-error=shadow CWARNFLAGS.gcc+= -Wno-error=discarded-qualifiers