summaryrefslogtreecommitdiff
path: root/patches/zano/0003-fix-mingw-build-issues.patch
diff options
context:
space:
mode:
authorrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>2025-03-04 12:27:45 +0100
committerGitHub <noreply@github.com>2025-03-04 12:27:45 +0100
commitfdb16635cbfe1d45a3d5869c0a55ec871d912ea0 (patch)
treeec6703c28b4f09c6d10f56339db78a3cdb2c8b82 /patches/zano/0003-fix-mingw-build-issues.patch
parent991a0d0c97bce6ae8671dc763dd03876dfa9ea8a (diff)
chore(deps): update zano digest to fe85ce2 (#116)
* chore(deps): update zano digest to fe85ce2 * rebase needed patches * fix integration tests, generate checksum --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Czarek Nakamoto <cyjan@mrcyjanek.net>
Diffstat (limited to 'patches/zano/0003-fix-mingw-build-issues.patch')
-rw-r--r--patches/zano/0003-fix-mingw-build-issues.patch61
1 files changed, 0 insertions, 61 deletions
diff --git a/patches/zano/0003-fix-mingw-build-issues.patch b/patches/zano/0003-fix-mingw-build-issues.patch
deleted file mode 100644
index 48b4d65..0000000
--- a/patches/zano/0003-fix-mingw-build-issues.patch
+++ /dev/null
@@ -1,61 +0,0 @@
-From 1f7604d5b661f4490a1757e5ed1d6ed367ffb739 Mon Sep 17 00:00:00 2001
-From: cyan <cyjan@mrcyjanek.net>
-Date: Sun, 3 Nov 2024 08:59:22 +0000
-Subject: [PATCH 3/5] fix mingw build issues
-
----
- contrib/epee/include/misc_os_dependent.h | 4 ++--
- src/common/callstack_helper.cpp | 2 +-
- src/crypto/ecrypt-config.h | 2 +-
- 3 files changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/contrib/epee/include/misc_os_dependent.h b/contrib/epee/include/misc_os_dependent.h
-index c06e5d94..a2a979b9 100644
---- a/contrib/epee/include/misc_os_dependent.h
-+++ b/contrib/epee/include/misc_os_dependent.h
-@@ -110,14 +110,14 @@ namespace misc_utils
- }
-
-
--#if defined(__GNUC__) && !defined(__ANDROID__)
-+#if defined(__GNUC__) && !defined(__ANDROID__) && !defined(_WIN32)
- #include <execinfo.h>
- #include <boost/core/demangle.hpp>
- #endif
- inline std::string print_trace_default()
- {
- std::stringstream ss;
--#if defined(__GNUC__) && !defined(__ANDROID__)
-+#if defined(__GNUC__) && !defined(__ANDROID__) && !defined(_WIN32)
- ss << std::endl << "STACK" << std::endl;
- const size_t max_depth = 100;
- size_t stack_depth;
-diff --git a/src/common/callstack_helper.cpp b/src/common/callstack_helper.cpp
-index b84fe5a8..c9eae839 100644
---- a/src/common/callstack_helper.cpp
-+++ b/src/common/callstack_helper.cpp
-@@ -9,7 +9,7 @@
- #define NOMINMAX
- #endif
- #include <windows.h>
--#include <Psapi.h>
-+#include <psapi.h>
- #pragma comment(lib, "psapi.lib")
- #pragma comment(lib, "dbghelp.lib")
-
-diff --git a/src/crypto/ecrypt-config.h b/src/crypto/ecrypt-config.h
-index 9176de17..8b488135 100644
---- a/src/crypto/ecrypt-config.h
-+++ b/src/crypto/ecrypt-config.h
-@@ -257,7 +257,7 @@
-
- #ifdef _UI64_MAX
-
--#if (_UI64_MAX / 0xFFFFFFFFui64 > 0xFFFFFFFFui64)
-+#if (_UI64_MAX / 0xFFFFFFFF > 0xFFFFFFFF)
- #ifndef I64T
- #define I64T __int64
- #define U64C(v) (v##ui64)
---
-2.39.5 (Apple Git-154)
-