Module Name: src
Committed By: nia
Date: Tue Oct 26 07:51:23 UTC 2021
Modified Files:
src/lib/libcrypt: Makefile
Log Message:
libcrypt: fine-grained warnings for argon2, requested by rin
To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/lib/libcrypt/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libcrypt/Makefile
diff -u src/lib/libcrypt/Makefile:1.29 src/lib/libcrypt/Makefile:1.30
--- src/lib/libcrypt/Makefile:1.29 Wed Oct 13 14:28:32 2021
+++ src/lib/libcrypt/Makefile Tue Oct 26 07:51:23 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.29 2021/10/13 14:28:32 nia Exp $
+# $NetBSD: Makefile,v 1.30 2021/10/26 07:51:23 nia Exp $
.include <bsd.own.mk>
@@ -24,7 +24,8 @@ SRCS+= crypt-argon2.c
# libargon2 sources
. for src in argon2.c core.c blake2b.c encoding.c ref.c
SRCS+= ${src}
-COPTS.${src}+= -Wno-error
+COPTS.${src}+= -Wno-error=cast-qual
+COPTS.${src}+= -Wno-error=type-limits
COPTS.${src}+= -fvisibility=hidden
. endfor
. if ${MACHINE} == "vax"