From: Paul F. <pa...@so...> - 2024-09-13 06:48:03
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=718dfb359720583649763930656e479d7720f00c commit 718dfb359720583649763930656e479d7720f00c Author: Paul Floyd <pj...@wa...> Date: Fri Sep 13 08:47:23 2024 +0200 FreeBSD: initial support for version 13.4 Diff: --- configure.ac | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configure.ac b/configure.ac index aa24b6382a..c7f834e051 100755 --- a/configure.ac +++ b/configure.ac @@ -415,6 +415,8 @@ case "${host_os}" in freebsd_13_2=1320 AC_DEFINE([FREEBSD_13_3], 1330, [FREEBSD_VERS value for FreeBSD 13.3]) freebsd_13_3=1330 + AC_DEFINE([FREEBSD_13_4], 1340, [FREEBSD_VERS value for FreeBSD 13.4]) + freebsd_13_4=1340 AC_DEFINE([FREEBSD_14_0], 1400, [FREEBSD_VERS value for FreeBSD 14.0]) freebsd_14_0=1400 AC_DEFINE([FREEBSD_14_1], 1410, [FREEBSD_VERS value for FreeBSD 14.1]) @@ -472,6 +474,11 @@ case "${host_os}" in AC_DEFINE([FREEBSD_VERS], FREEBSD_13_3, [FreeBSD version]) freebsd_vers=$freebsd_13_3 ;; + 13.4-*) + AC_MSG_RESULT([FreeBSD 13.4 (${kernel})]) + AC_DEFINE([FREEBSD_VERS], FREEBSD_13_4, [FreeBSD version]) + freebsd_vers=$freebsd_13_4 + ;; *) AC_MSG_RESULT([unsupported (${kernel})]) AC_MSG_ERROR([Valgrind works on FreeBSD 10.x to 15.x]) |