From 12e035025753a19ba0bc0d47e12423cb76d2606a Mon Sep 17 00:00:00 2001 From: mosfet80 Date: Thu, 15 Aug 2024 20:34:40 +0200 Subject: [PATCH] Fix cve into assimp Updated assimp .. is need to fix cve https://ubuntu.com/security/CVE-2024-40724 Signed-off-by: mosfet80 --- rviz_assimp_vendor/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rviz_assimp_vendor/CMakeLists.txt b/rviz_assimp_vendor/CMakeLists.txt index 1a5ce0c7c..6238f3d25 100644 --- a/rviz_assimp_vendor/CMakeLists.txt +++ b/rviz_assimp_vendor/CMakeLists.txt @@ -12,7 +12,7 @@ set(ON 1) # TODO: Switch to version range in find_package in CMake 3.19 find_package(assimp QUIET) -if(NOT assimp_FOUND OR "${assimp_VERSION}" VERSION_LESS 5.2.0) +if(NOT assimp_FOUND OR "${assimp_VERSION}" VERSION_LESS 5.4.2) set(assimp_FOUND FALSE) endif() @@ -38,7 +38,7 @@ endif() ament_vendor(assimp_vendor SATISFIED ${assimp_FOUND} VCS_URL https://github.com/assimp/assimp.git - VCS_VERSION v5.3.1 + VCS_VERSION v5.4.2 CMAKE_ARGS -DASSIMP_BUILD_ASSIMP_TOOLS:BOOL=OFF -DASSIMP_BUILD_TESTS:BOOL=OFF