From 1f4565219b74c8b8ff9084425e24c50b43ec3d7b Mon Sep 17 00:00:00 2001 From: botantony Date: Wed, 10 Dec 2025 22:08:50 +0100 Subject: [PATCH] fix(cmake): remove `zlib` inclusion `zlib.cmake` module was removed in https://github.com/draios/sysdig/pull/2174 but `userspace/sysdig/CMakeLists.txt` still includes it Related to https://github.com/Homebrew/homebrew-core/pull/258081 Signed-off-by: botantony --- userspace/sysdig/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/userspace/sysdig/CMakeLists.txt b/userspace/sysdig/CMakeLists.txt index 4acbb0300c..aca6ad0d19 100644 --- a/userspace/sysdig/CMakeLists.txt +++ b/userspace/sysdig/CMakeLists.txt @@ -20,7 +20,6 @@ if(NOT WIN32) include(ncurses) endif() # NOT WIN32 -include(zlib) include(luajit) include_directories("${PROJECT_BINARY_DIR}/userspace/sinspui")