File tree Expand file tree Collapse file tree 5 files changed +317
-192
lines changed
Expand file tree Collapse file tree 5 files changed +317
-192
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ elseif(USE_SHA256 STREQUAL "CommonCrypto")
6262 set (GIT_SHA256_COMMON_CRYPTO 1)
6363elseif (USE_SHA256 STREQUAL "mbedTLS" )
6464 set (GIT_SHA256_MBEDTLS 1)
65+ elseif (USE_SHA256 STREQUAL "Win32" )
66+ set (GIT_SHA256_WIN32 1)
6567else ()
6668 message (FATAL_ERROR "Asked for unknown SHA256 backend: ${USE_SHA256} " )
6769endif ()
Original file line number Diff line number Diff line change 4949#cmakedefine GIT_SHA1_MBEDTLS 1
5050
5151#cmakedefine GIT_SHA256_BUILTIN 1
52+ #cmakedefine GIT_SHA256_WIN32 1
5253#cmakedefine GIT_SHA256_COMMON_CRYPTO 1
5354#cmakedefine GIT_SHA256_OPENSSL 1
5455#cmakedefine GIT_SHA256_MBEDTLS 1
Original file line number Diff line number Diff line change @@ -55,6 +55,8 @@ elseif(USE_SHA256 STREQUAL "CommonCrypto")
5555 file (GLOB UTIL_SRC_SHA256 hash/common_crypto.*)
5656elseif (USE_SHA256 STREQUAL "mbedTLS" )
5757 file (GLOB UTIL_SRC_SHA256 hash/mbedtls.*)
58+ elseif (USE_SHA256 STREQUAL "Win32" )
59+ file (GLOB UTIL_SRC_SHA256 hash/win32 .*)
5860else ()
5961 message (FATAL_ERROR "Asked for unknown SHA256 backend: ${USE_SHA256} " )
6062endif ()
You can’t perform that action at this time.
0 commit comments