From 71a773ccac2259ae5e9c50960c858483cfeeec6f Mon Sep 17 00:00:00 2001 From: Mikhail Teterin Date: Sun, 5 Jan 2025 00:22:38 -0500 Subject: [PATCH] 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 --- 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