* updated tzdata (2024a -> 2024b)
[t2sde.git] / package / editors / neovim / hotfix-no-ccache.patch
blob1c195aa4670ce837196011cd8de8c1d463f2c2ab
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # T2 SDE: package/*/neovim/hotfix-no-ccache.patch
3 # Copyright (C) 2024 The T2 SDE Project
4 #
5 # This Copyright note is generated by scripts/Create-CopyPatch,
6 # more information can be found in the files COPYING and README.
7 #
8 # This patch file is dual-licensed. It is available under the license the
9 # patched project is licensed under, as long as it is an OpenSource license
10 # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
11 # of the GNU General Public License version 2 as used by the T2 SDE.
12 # --- T2-COPYRIGHT-NOTE-END ---
14 --- neovim-0.10.0/cmake/Deps.cmake.vanilla 2024-06-03 19:06:46.476000000 +0200
15 +++ neovim-0.10.0/cmake/Deps.cmake 2024-06-03 19:07:46.522000000 +0200
16 @@ -23,11 +23,13 @@
17 list(APPEND DEPS_CMAKE_ARGS -D CMAKE_POLICY_DEFAULT_CMP0092=NEW)
18 endif()
20 +if(0)
21 find_program(CACHE_PRG NAMES ccache sccache)
22 if(CACHE_PRG)
23 set(CMAKE_C_COMPILER_LAUNCHER ${CMAKE_COMMAND} -E env CCACHE_SLOPPINESS=pch_defines,time_macros ${CACHE_PRG})
24 list(APPEND DEPS_CMAKE_CACHE_ARGS -DCMAKE_C_COMPILER_LAUNCHER:STRING=${CMAKE_C_COMPILER_LAUNCHER})
25 endif()
26 +endif()
28 # MAKE_PRG
29 if(UNIX)