git: de07beec3142 - 2023Q4 - www/mod_http2: fix build on armv6/armv7

From: Robert Clausecker <fuz_at_FreeBSD.org>
Date: Fri, 03 Nov 2023 21:24:38 UTC
The branch 2023Q4 has been updated by fuz:

URL: https://cgit.FreeBSD.org/ports/commit/?id=de07beec3142ff0b4eaa12b6b6d3706307c66e68

commit de07beec3142ff0b4eaa12b6b6d3706307c66e68
Author:     Robert Clausecker <fuz@FreeBSD.org>
AuthorDate: 2023-11-03 07:27:53 +0000
Commit:     Robert Clausecker <fuz@FreeBSD.org>
CommitDate: 2023-11-03 21:24:16 +0000

    www/mod_http2: fix build on armv6/armv7
    
     - also incidentally fix the build on powerpc
    
    Approved by:    portmgr (build fix blanket)
    MFH:            2023Q4
    
    (cherry picked from commit be0250d4a2c6ead8aabaf49c046aa401e696d610)
    (cherry picked from commit 6f2112f80c3937bcf1d42bd7a18a742b36b3a27b)
---
 www/mod_http2/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/mod_http2/Makefile b/www/mod_http2/Makefile
index 591b9187ca77..ca4ec0aee258 100644
--- a/www/mod_http2/Makefile
+++ b/www/mod_http2/Makefile
@@ -27,7 +27,7 @@ OPTIONS_DEFINE=	DOCS
 
 .include <bsd.port.pre.mk>
 
-.if ${ARCH} == "i386"
+.if ${ARCH} == "i386" || ${ARCH} == "powerpc" || ${ARCH:Marmv?} != ""
 CFLAGS+=	-Wno-error=tautological-constant-out-of-range-compare
 .endif