git: 54e8599b72a6 - 2025Q1 - net/udt: disable a compiler-warning on earlier versions of FreeBSD too
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 20 Feb 2025 23:29:58 UTC
The branch 2025Q1 has been updated by fuz: URL: https://cgit.FreeBSD.org/ports/commit/?id=54e8599b72a6740f935c7227e8f18a4258da34d9 commit 54e8599b72a6740f935c7227e8f18a4258da34d9 Author: Mikhail Teterin <mi@FreeBSD.org> AuthorDate: 2025-01-05 05:22:38 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2025-02-20 23:29:18 +0000 net/udt: disable a compiler-warning on earlier versions of FreeBSD too This fixes build on 13.4, which has newer clang... PR: 283853 MFH: 2025Q1 (cherry picked from commit 71a773ccac2259ae5e9c50960c858483cfeeec6f) --- net/udt/files/BSDmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/udt/files/BSDmakefile b/net/udt/files/BSDmakefile index ca735d55e127..f41527d37ffa 100644 --- a/net/udt/files/BSDmakefile +++ b/net/udt/files/BSDmakefile @@ -17,7 +17,7 @@ CXXFLAGS+= -Wno-system-headers -Wall -W \ -Wwrite-strings -Wswitch -Wno-cast-align \ -Wunused-parameter -Werror -.if ${OSVERSION} >= 1401000 +.if ${OSVERSION} >= 1304000 CXXFLAGS+= -Wno-vla-cxx-extension .endif