diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2022-06-04 16:52:38 -0500 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2022-10-21 18:34:01 -0500 |
commit | 18d37b40a1dff05c8e75928dfdf851bf2f1acf8b (patch) | |
tree | 2aa60b0e6a8f7f95a90ef159815c7c2dc675d223 /user/kwallet/kwallet-5.22.0-blowfish-endianness.patch | |
parent | dadb2364fa576f1b9d7e01fe26de6fae296c5844 (diff) | |
download | packages-18d37b40a1dff05c8e75928dfdf851bf2f1acf8b.tar.gz packages-18d37b40a1dff05c8e75928dfdf851bf2f1acf8b.tar.bz2 packages-18d37b40a1dff05c8e75928dfdf851bf2f1acf8b.tar.xz packages-18d37b40a1dff05c8e75928dfdf851bf2f1acf8b.zip |
user/[KDE Frameworks]: Update to 5.94.0
Many frameworks have added or removed dependencies.
Documentation builds have been fixed for new tag file dependencies.
* KIO: Fix build on GCC 8.
* Prison: Ensure QR and DTMX barcodes are generated properly on
big-endian systems.
* Syndication: New framework.
Diffstat (limited to 'user/kwallet/kwallet-5.22.0-blowfish-endianness.patch')
-rw-r--r-- | user/kwallet/kwallet-5.22.0-blowfish-endianness.patch | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/user/kwallet/kwallet-5.22.0-blowfish-endianness.patch b/user/kwallet/kwallet-5.22.0-blowfish-endianness.patch index 81c475c28..3234cc105 100644 --- a/user/kwallet/kwallet-5.22.0-blowfish-endianness.patch +++ b/user/kwallet/kwallet-5.22.0-blowfish-endianness.patch @@ -1,6 +1,6 @@ --- kwallet-5.29.0/src/runtime/kwalletd/backend/blowfish.cc.old 2016-12-03 21:12:17.000000000 +0000 +++ kwallet-5.29.0/src/runtime/kwalletd/backend/blowfish.cc 2017-01-29 18:02:10.193293280 +0000 -@@ -31,12 +31,7 @@ +@@ -19,12 +19,7 @@ #include "blowfishtables.h" @@ -14,16 +14,16 @@ BlowFish::BlowFish() { -@@ -135,7 +133,7 @@ +@@ -126,7 +121,7 @@ return init(); } - + // clang-format off -#if Q_BYTE_ORDER == Q_BIG_ENDIAN +#if Q_BYTE_ORDER == Q_LITTLE_ENDIAN #define shuffle(x) do { \ uint32_t r = x; \ x = (r & 0xff000000) >> 24; \ -@@ -154,12 +152,12 @@ +@@ -146,12 +141,12 @@ } for (int i = 0; i < len / _blksz; i++) { @@ -38,7 +38,7 @@ shuffle(*d); shuffle(*(d + 1)); #endif -@@ -178,12 +176,12 @@ +@@ -170,12 +165,12 @@ } for (int i = 0; i < len / _blksz; i++) { |