$NetBSD: patch-src_lib_deskflow_CMakeLists.txt,v 1.2 2025/05/30 21:17:32 tnn Exp $ Prevent download during configure phase. --- src/lib/deskflow/CMakeLists.txt.orig 2025-05-29 13:27:33.000000000 +0000 +++ src/lib/deskflow/CMakeLists.txt @@ -11,11 +11,6 @@ else() #Be sure to update the version and MD5 together set(CLI11_VERSION 2.5.0) set(CLI11_MD5 0d3d6898febe3b82fc47b3d608b1ae95) - file( - DOWNLOAD "https://github.com/CLIUtils/CLI11/releases/download/v${CLI11_VERSION}/CLI11.hpp" - "${CMAKE_BINARY_DIR}/include/CLI/CLI.hpp" - EXPECTED_MD5 ${CLI11_MD5} - ) set(cli11_inc_dir "${CMAKE_BINARY_DIR}/include") message(STATUS "CLI11 [Downloaded] Version: ${CLI11_VERSION}") message(STATUS "CLI11 INC_DIR: ${cli11_inc_dir}") @@ -30,12 +25,6 @@ else() # Save our copy with .h not .hpp for compatibliy with system version < 3.4 set(TOMLPP_VERSION 3.4.0) set(TOMLPP_MD5 caefb3b60119731fb4b4d24b6339e7fb) - file( - DOWNLOAD "https://raw.githubusercontent.com/marzer/tomlplusplus/refs/tags/v${TOMLPP_VERSION}/toml.hpp" - "${CMAKE_BINARY_DIR}/include/toml++/toml.h" - SHOW_PROGRESS - EXPECTED_MD5 ${TOMLPP_MD5} - ) set(tomlPP_inc_dir "${CMAKE_BINARY_DIR}/include") message(STATUS "tomlplusplus [Downloaded] Version: 3.4.0") message(STATUS "tomlplusplus INC DIR: ${tomlPP_inc_dir}")