From 8082b9b1d97da5d07cde8581070971133073aba6 Mon Sep 17 00:00:00 2001 From: tb <> Date: Mon, 27 May 2024 16:11:43 +0000 Subject: openssl: enable -Wshadow for clang ok job jsing --- src/usr.bin/openssl/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/usr.bin/openssl/Makefile b/src/usr.bin/openssl/Makefile index 47199c10e1..ac42361932 100644 --- a/src/usr.bin/openssl/Makefile +++ b/src/usr.bin/openssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 2023/04/25 16:11:02 tb Exp $ +# $OpenBSD: Makefile,v 1.13 2024/05/27 16:11:43 tb Exp $ .include @@ -11,12 +11,12 @@ CFLAGS+= -Wformat CFLAGS+= -Wformat-security CFLAGS+= -Wimplicit CFLAGS+= -Wreturn-type -#CFLAGS+= -Wshadow CFLAGS+= -Wtrigraphs CFLAGS+= -Wuninitialized CFLAGS+= -Wunused .if ${COMPILER_VERSION:L} == "clang" CFLAGS+= -Werror +CFLAGS+= -Wshadow .endif CFLAGS+= -DLIBRESSL_INTERNAL -- cgit v1.2.3-55-g6feb