Skip to content

Commit

Permalink
Fixed warnings on RHEL (#1627) (#1630)
Browse files Browse the repository at this point in the history
* reduce minimal requeriments

Signed-off-by: Alejandro Hernández Cordero <ahcorde@gmail.com>
(cherry picked from commit 088a605)

Co-authored-by: Alejandro Hernández Cordero <ahcorde@gmail.com>
  • Loading branch information
mergify[bot] and ahcorde authored Apr 29, 2024
1 parent 17b66b9 commit 10ee171
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion zstd_vendor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ find_package(ament_cmake_vendor_package REQUIRED)

list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
# We need at least VERSION 1.5.5, version check is done in Findzstd.cmake
find_package(zstd 1.5.5 QUIET)
# The platform with the oldest supported version is RHEL-9,
# which has zstd 1.5.1. Make sure we have at least that version.
find_package(zstd 1.5.1 QUIET)

ament_vendor(zstd_vendor
SATISFIED ${zstd_FOUND}
Expand Down

0 comments on commit 10ee171

Please sign in to comment.