diff options
author | thegeorg <thegeorg@yandex-team.ru> | 2022-04-07 16:10:54 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.ru> | 2022-04-07 16:10:54 +0300 |
commit | 0d7f718eeab0bd4c8e0a8322d63a03f3b4359b9c (patch) | |
tree | f2868fa05ec1351297557223f55e5d77722baaa1 /contrib/libs/curl | |
parent | 7d9cd4fc964b137f81d1e83a1e3542a1457ceb87 (diff) | |
download | ydb-0d7f718eeab0bd4c8e0a8322d63a03f3b4359b9c.tar.gz |
Fix reimport after yamaker changes
`_M_ARM64` [is predefined](https://docs.microsoft.com/en-us/cpp/preprocessor/predefined-macros) by MSVC when compiling for ARMv8.
ref:f20027d7ea0f18d0a3d1e2510a8eafe47809eeb6
Diffstat (limited to 'contrib/libs/curl')
-rw-r--r-- | contrib/libs/curl/lib/curl_config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/curl/lib/curl_config.h b/contrib/libs/curl/lib/curl_config.h index f6dc46ab83..78b6b4c0bb 100644 --- a/contrib/libs/curl/lib/curl_config.h +++ b/contrib/libs/curl/lib/curl_config.h @@ -26,7 +26,7 @@ # include "curl_config-x32.h" #endif -#if defined(__x86_64__) || defined(_M_X64) || defined(__aarch64__) || defined(__powerpc64__) +#if defined(__x86_64__) || defined(_M_X64) || defined(__aarch64__) || defined(_M_ARM64) || defined(__powerpc64__) # include "curl_config-x64.h" #endif |