From 0c55486d8fde08eb21a956bba3fbd2fe1ae57fcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ricks?= Date: Fri, 1 Sep 2023 12:44:26 +0200 Subject: [PATCH] Fix: Require gvm-libs 22.7 for credentials excerpt_size The credentials excerpt_size got introduced with https://github.com/greenbone/gvm-libs/commit/19d347c0 and was released with gvm-libs 22.7.0. Since https://github.com/greenbone/gvmd/commit/81b9aaaf8 it is used in gvmd. The change was released with gvmd 22.7.0. Closes #2073 --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 02f314aaa..d7fc449d7 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -26,7 +26,7 @@ find_package (Threads) ## list and throw an error, otherwise long install-cmake-install-cmake cycles ## might occur. -pkg_check_modules (LIBGVM_BASE REQUIRED libgvm_base>=22.6) +pkg_check_modules (LIBGVM_BASE REQUIRED libgvm_base>=22.7) pkg_check_modules (LIBGVM_UTIL REQUIRED libgvm_util>=22.6) pkg_check_modules (LIBGVM_OSP REQUIRED libgvm_osp>=22.6) pkg_check_modules (LIBGVM_GMP REQUIRED libgvm_gmp>=22.6)