diff options
| author | lukem <lukem@NetBSD.org> | 2023-06-03 09:09:01 +0000 |
|---|---|---|
| committer | lukem <lukem@NetBSD.org> | 2023-06-03 09:09:01 +0000 |
| commit | ff6601a6cc5f10bccaf009e4e2b72c75774d7a4d (patch) | |
| tree | 87fe4eb9bda81296a5ed95f9cf55e1a2bf1ecd9a /external/apache2 | |
| parent | abaa8cb87058c08ad0688c849a28f4e007c07bbb (diff) | |
bsd.own.mk: rename GCC_NO_* to CC_WNO_*
Rename compiler-warning-disable variables from
GCC_NO_warning
to
CC_WNO_warning
where warning is the full warning name as used by the compiler.
GCC_NO_IMPLICIT_FALLTHRU is CC_WNO_IMPLICIT_FALLTHROUGH
Using the convention CC_compilerflag, where compilerflag
is based on the full compiler flag name.
Diffstat (limited to 'external/apache2')
| -rw-r--r-- | external/apache2/llvm/lib/libLLVMAnalysis/Makefile | 4 | ||||
| -rw-r--r-- | external/apache2/llvm/librt/libLLVMRuntimeDyld/Makefile | 4 | ||||
| -rw-r--r-- | external/apache2/mDNSResponder/usr.sbin/mdnsd/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/external/apache2/llvm/lib/libLLVMAnalysis/Makefile b/external/apache2/llvm/lib/libLLVMAnalysis/Makefile index 7e6a02d982c..f3c76fe4f34 100644 --- a/external/apache2/llvm/lib/libLLVMAnalysis/Makefile +++ b/external/apache2/llvm/lib/libLLVMAnalysis/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2021/05/30 01:56:50 joerg Exp $ +# $NetBSD: Makefile,v 1.4 2023/06/03 09:09:02 lukem Exp $ LIB= LLVMAnalysis @@ -127,4 +127,4 @@ SRCS+= AliasAnalysis.cpp \ .include <bsd.lib.mk> .endif -CWARNFLAGS.gcc+= ${GCC_NO_STRINGOP_OVERFLOW} +CWARNFLAGS.gcc+= ${CC_WNO_STRINGOP_OVERFLOW} diff --git a/external/apache2/llvm/librt/libLLVMRuntimeDyld/Makefile b/external/apache2/llvm/librt/libLLVMRuntimeDyld/Makefile index 79ceaec5366..b889408f8a6 100644 --- a/external/apache2/llvm/librt/libLLVMRuntimeDyld/Makefile +++ b/external/apache2/llvm/librt/libLLVMRuntimeDyld/Makefile @@ -1,5 +1,5 @@ -# $NetBSD: Makefile,v 1.2 2020/09/07 00:18:26 mrg Exp $ +# $NetBSD: Makefile,v 1.3 2023/06/03 09:09:02 lukem Exp $ .include <bsd.init.mk> -CWARNFLAGS.gcc+= ${GCC_NO_STRINGOP_OVERFLOW} +CWARNFLAGS.gcc+= ${CC_WNO_STRINGOP_OVERFLOW} diff --git a/external/apache2/mDNSResponder/usr.sbin/mdnsd/Makefile b/external/apache2/mDNSResponder/usr.sbin/mdnsd/Makefile index e131bc8b16b..511b23e3f9f 100644 --- a/external/apache2/mDNSResponder/usr.sbin/mdnsd/Makefile +++ b/external/apache2/mDNSResponder/usr.sbin/mdnsd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2023/06/03 08:52:53 lukem Exp $ +# $NetBSD: Makefile,v 1.16 2023/06/03 09:09:02 lukem Exp $ PROG= mdnsd @@ -20,6 +20,6 @@ MAN= mdnsd.8 CWARNFLAGS.clang+= -Wno-unused-value -Wno-error=address-of-packed-member CWARNFLAGS.gcc+= ${CC_WNO_ADDRESS_OF_PACKED_MEMBER} -COPTS.DNSCommon.c+= ${GCC_NO_RETURN_LOCAL_ADDR} +COPTS.DNSCommon.c+= ${CC_WNO_RETURN_LOCAL_ADDR} .include <bsd.prog.mk> |
