From 1887c9dbcd270f326e05bb8c82cc23f1aee9c0ca 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 (cherry picked from commit 809f9b772962a2cbefdc27197d3c4962970d5932) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a794bb9b..a06c8f7f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -77,7 +77,7 @@ endif (WITH_NACL) # 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)