Commit 88c1333 for zlib

commit 88c13334882d3a3007ff5f5e708e216bc9c4b155
Author: Vollstrecker <werner@vollstreckernet.de>
Date:   Wed Dec 24 14:16:44 2025 +0100

    CMake: Use a normal components search for zlib.

diff --git a/zlibConfig.cmake.in b/zlibConfig.cmake.in
index 713cac4..8252ab3 100644
--- a/zlibConfig.cmake.in
+++ b/zlibConfig.cmake.in
@@ -1,14 +1,6 @@
 @PACKAGE_INIT@

-set(_ZLIB_supported_components "")
-
-if(@ZLIB_BUILD_SHARED@)
-    list(APPEND _ZLIB_supported_components shared)
-endif(@ZLIB_BUILD_SHARED@)
-
-if(@ZLIB_BUILD_STATIC@)
-    list(APPEND _ZLIB_supported_components static)
-endif(@ZLIB_BUILD_STATIC@)
+set(_ZLIB_supported_components "shared" "static")

 if(ZLIB_FIND_COMPONENTS)
     foreach(_comp ${ZLIB_FIND_COMPONENTS})