diff --git a/CHANGES b/CHANGES index f98e1fc19d..0aeb8d8b34 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ +7.2.0-dev.534 | 2025-04-15 08:57:48 -0700 + + * CI: Add krb5 to FreeBSD (Tim Wojtulewicz, Corelight) + + * Switch libkrb5 check to exclude only Darwin (Tim Wojtulewicz, Corelight) + 7.2.0-dev.530 | 2025-04-14 10:11:59 -0700 * Add STORAGE_ prefixes for backends and serializers (Tim Wojtulewicz, Corelight) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6bb53bcb3c..8bcb86bd1f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1060,7 +1060,7 @@ if (LIBMMDB_FOUND) endif () set(USE_KRB5 false) -if (${CMAKE_SYSTEM_NAME} MATCHES Linux) +if (NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin") find_package(LibKrb5) if (LIBKRB5_FOUND) set(USE_KRB5 true) diff --git a/VERSION b/VERSION index b8f88c5bb6..4b2cf20944 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -7.2.0-dev.530 +7.2.0-dev.534 diff --git a/ci/freebsd/prepare.sh b/ci/freebsd/prepare.sh index 5fc425ddf4..9f3041e6b5 100755 --- a/ci/freebsd/prepare.sh +++ b/ci/freebsd/prepare.sh @@ -6,7 +6,7 @@ set -e set -x env ASSUME_ALWAYS_YES=YES pkg bootstrap -pkg install -y bash cppzmq git cmake swig bison python3 base64 flex ccache jq dnsmasq +pkg install -y bash cppzmq git cmake swig bison python3 base64 flex ccache jq dnsmasq krb5 pkg upgrade -y curl pyver=$(python3 -c 'import sys; print(f"py{sys.version_info[0]}{sys.version_info[1]}")') pkg install -y $pyver-sqlite3