diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-06-24 22:53:44 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-08-15 19:46:37 +0200 |
commit | da715b976410cb437456272c921ccd4589b4fbe8 (patch) | |
tree | 4c1de54f88af964d7a0653b7c2310c0b7a236fa3 /eclass | |
parent | cmake.eclass: bug 811486 escape find patterns (diff) | |
download | gentoo-da715b976410cb437456272c921ccd4589b4fbe8.tar.gz gentoo-da715b976410cb437456272c921ccd4589b4fbe8.tar.bz2 gentoo-da715b976410cb437456272c921ccd4589b4fbe8.zip |
cmake.eclass: Set CMAKE_TLS_VERIFY=ON
Closes: https://bugs.gentoo.org/927160
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/cmake.eclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index b7852355b90b..db31320c339d 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -542,6 +542,7 @@ cmake_src_configure() { set(BUILD_SHARED_LIBS ON CACHE BOOL "") set(Python3_FIND_UNVERSIONED_NAMES FIRST CACHE STRING "") set(CMAKE_DISABLE_PRECOMPILE_HEADERS ON CACHE BOOL "") + set(CMAKE_TLS_VERIFY ON CACHE BOOL "") _EOF_ if [[ -n ${_ECM_ECLASS} ]]; then |