summaryrefslogtreecommitdiff
path: root/patches/monero/0019-fix-mingw-build-issues.patch
diff options
context:
space:
mode:
authorCzarek Nakamoto <cyjan@mrcyjanek.net>2026-04-17 08:47:13 +0200
committerCzarek Nakamoto <cyjan@mrcyjanek.net>2026-04-17 08:47:29 +0200
commitdc26758a923b98f2ceb0c2e2e14e9792fff8ca15 (patch)
tree948b32530852e35a981128a9abe851624eae1871 /patches/monero/0019-fix-mingw-build-issues.patch
parentab6a4ebb8be0e5a71da5d3705f6eff782b651699 (diff)
wip: initial FCMP
Diffstat (limited to 'patches/monero/0019-fix-mingw-build-issues.patch')
-rw-r--r--patches/monero/0019-fix-mingw-build-issues.patch46
1 files changed, 0 insertions, 46 deletions
diff --git a/patches/monero/0019-fix-mingw-build-issues.patch b/patches/monero/0019-fix-mingw-build-issues.patch
deleted file mode 100644
index a9e7b5c..0000000
--- a/patches/monero/0019-fix-mingw-build-issues.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From 2d4ed0b13eea96b25a574e8a87644df75c16ffb0 Mon Sep 17 00:00:00 2001
-From: Czarek Nakamoto <cyjan@mrcyjanek.net>
-Date: Wed, 4 Mar 2026 14:52:14 +0100
-Subject: [PATCH 19/20] fix: mingw build issues
-
----
- contrib/epee/include/serialization/keyvalue_serialization.h | 1 +
- contrib/epee/src/abstract_http_client.cpp | 3 ++-
- 2 files changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/contrib/epee/include/serialization/keyvalue_serialization.h b/contrib/epee/include/serialization/keyvalue_serialization.h
-index fbbddc7d2..5104f284d 100644
---- a/contrib/epee/include/serialization/keyvalue_serialization.h
-+++ b/contrib/epee/include/serialization/keyvalue_serialization.h
-@@ -26,6 +26,7 @@
-
- #pragma once
-
-+#include <cstdint>
- #include <type_traits>
- #include <boost/utility/value_init.hpp>
- #include <boost/foreach.hpp>
-diff --git a/contrib/epee/src/abstract_http_client.cpp b/contrib/epee/src/abstract_http_client.cpp
-index ed4a193d9..2352c7d62 100644
---- a/contrib/epee/src/abstract_http_client.cpp
-+++ b/contrib/epee/src/abstract_http_client.cpp
-@@ -3,6 +3,7 @@
- #include "net/http_base.h"
- #include "net/net_parse_helpers.h"
- #include "misc_log_ex.h"
-+#include <cmath>
-
- #undef MONERO_DEFAULT_LOG_CATEGORY
- #define MONERO_DEFAULT_LOG_CATEGORY "net.http"
-@@ -39,7 +40,7 @@ namespace net_utils
- while (num_char >= radix)
- {
- temp = num_char % radix;
-- num_char = (int)floor((float)num_char / (float)radix);
-+ num_char = (int)std::floor((float)num_char / (float)radix);
- csTmp = get_hex_vals()[temp];
- }
-
---
-2.50.1 (Apple Git-155)
-