From 809f9b772962a2cbefdc27197d3c4962970d5932 Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Thu, 22 Jan 2026 22:44:41 +0100 Subject: [PATCH] Require abimap 0.4.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The version 0.4.0 fixed the issues of multi-digit version numbers which we hit with releaseing libssh ABI version 4_10 with last release. Signed-off-by: Jakub Jelen Reviewed-by: Pavol Žáčik --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c8b84742..0e3152b2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -90,7 +90,7 @@ endif (WITH_FIDO2) # Disable symbol versioning in non UNIX platforms if (UNIX) - find_package(ABIMap 0.3.1) + find_package(ABIMap 0.4.0) else (UNIX) set(WITH_SYMBOL_VERSIONING OFF) endif (UNIX)