git: 6f2112f80c39 - main - www/mod_http2: fix build on armv6/armv7
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 03 Nov 2023 21:18:24 UTC
The branch main has been updated by fuz: URL: https://cgit.FreeBSD.org/ports/commit/?id=6f2112f80c3937bcf1d42bd7a18a742b36b3a27b commit 6f2112f80c3937bcf1d42bd7a18a742b36b3a27b 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:16:25 +0000 www/mod_http2: fix build on armv6/armv7 Approved by: portmgr (build fix blanket) MFH: 2023Q4 --- 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 14ab16e7fe5b..344389f977c9 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" || ${ARCH} == "powerpc" +.if ${ARCH} == "i386" || ${ARCH} == "powerpc" || ${ARCH:Marmv?} != "" CFLAGS+= -Wno-error=tautological-constant-out-of-range-compare .endif