From bef9167fbf810bc896d42589187d9276912129e2 Mon Sep 17 00:00:00 2001 From: Yasuhiro Kimura Date: Mon, 8 Sep 2025 15:11:16 +0900 Subject: [PATCH] [freebsd] Update supported FreeBSD versions * Add FreeBSD 16 * Remove FreeBSD 12 (EoL on December 31, 2023) --- Configure | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Configure b/Configure index ec56d4b3..b0acd3b4 100755 --- a/Configure +++ b/Configure @@ -1069,11 +1069,6 @@ case $LSOF_TGT in # { # If the FreeBSD version isn't pre-defined, determine it. case $LSOF_VSTR in # { - 12*) - LSOF_CFGL="$LSOF_CFGL -lutil" - LSOF_TSTBIGF=" " - LSOF_VERS=12000 - ;; 13*) LSOF_CFGL="$LSOF_CFGL -lutil" LSOF_TSTBIGF=" " @@ -1089,6 +1084,11 @@ case $LSOF_TGT in # { LSOF_TSTBIGF=" " LSOF_VERS=15000 ;; + 16*) + LSOF_CFGL="$LSOF_CFGL -lutil" + LSOF_TSTBIGF=" " + LSOF_VERS=16000 + ;; *) echo Unknown FreeBSD release: `uname -r` rm -f $LSOF_HLP