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
This commit is contained in:
Mikhail Teterin 2025-01-05 00:22:38 -05:00 committed by Robert Clausecker
parent 5541f7ee81
commit 71a773ccac

View file

@ -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