git: be0250d4a2c6 - main - www/mod_http2: fix build on powerpc

From: Piotr Kubaj <pkubaj_at_FreeBSD.org>
Date: Wed, 11 Oct 2023 18:27:15 UTC
The branch main has been updated by pkubaj:

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

commit be0250d4a2c6ead8aabaf49c046aa401e696d610
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2023-10-10 22:25:05 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2023-10-11 18:26:36 +0000

    www/mod_http2: fix build on powerpc
---
 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..f7e82811e1d2 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"
 CFLAGS+=	-Wno-error=tautological-constant-out-of-range-compare
 .endif