diff options
author | nathan <nathansmith@disroot.org> | 2025-09-02 23:58:05 +0000 |
---|---|---|
committer | nathan <nathansmith@disroot.org> | 2025-09-02 23:58:05 +0000 |
commit | 96b85af286e86b66551a0bb9d18dd7cfcc9087c1 (patch) | |
tree | ea53a063063bf36e5224f3dd82a4346ee9691bc3 | |
parent | d89656caf69a41ec179d9b0f5868d3dc184cbb2f (diff) | |
download | feather-wallet-void-96b85af286e86b66551a0bb9d18dd7cfcc9087c1.tar.gz feather-wallet-void-96b85af286e86b66551a0bb9d18dd7cfcc9087c1.tar.bz2 feather-wallet-void-96b85af286e86b66551a0bb9d18dd7cfcc9087c1.zip |
-rw-r--r-- | feather-wallet/patches/add-math-include.patch | 10 | ||||
-rw-r--r-- | feather-wallet/template | 6 |
2 files changed, 13 insertions, 3 deletions
diff --git a/feather-wallet/patches/add-math-include.patch b/feather-wallet/patches/add-math-include.patch new file mode 100644 index 0000000..d82f7b4 --- /dev/null +++ b/feather-wallet/patches/add-math-include.patch @@ -0,0 +1,10 @@ +--- a/monero/contrib/epee/src/abstract_http_client.cpp 2025-09-02 23:06:37.076475782 +0000 ++++ b/monero/contrib/epee/src/abstract_http_client.cpp 2025-09-02 23:07:22.434327680 +0000 +@@ -2,6 +2,7 @@ + #include "net/http_base.h" + #include "net/net_parse_helpers.h" + #include "misc_log_ex.h" ++#include "math.h" + + #undef MONERO_DEFAULT_LOG_CATEGORY + #define MONERO_DEFAULT_LOG_CATEGORY "net.http"
\ No newline at end of file diff --git a/feather-wallet/template b/feather-wallet/template index 8b767bb..5cbba6e 100644 --- a/feather-wallet/template +++ b/feather-wallet/template @@ -4,8 +4,8 @@ revision=1 create_wrksrc=yes build_wrksrc="feather-${version}" build_style=cmake -hostmakedepends="git base-devel doxygen" -makedepends="openssl-devel unbound-devel libsodium-devel zlib-devel +hostmakedepends="cmake git base-devel doxygen" +makedepends="openssl-devel unbound-devel zlib-devel qt6-base-devel qt6-svg-devel qt6-websockets-devel qt6-multimedia-devel qt6-wayland-devel libgcrypt-devel libzip-devel hidapi-devel protobuf protobuf-devel qrencode-devel zxing-cpp-devel boost-devel czmq-devel @@ -16,4 +16,4 @@ license="BSD-3-Clause" homepage="https://featherwallet.org" distfiles="https://featherwallet.org/files/releases/source/feather-${version}.tar.gz" checksum="1db8cbc5123abc8de63c96e6aedc08a8cda669b032b75c18f955e71ce8c4291e" - +patch_args="-Np1 --directory=${build_wrksrc}" |