aboutsummaryrefslogtreecommitdiff
path: root/libraries/FreeImage/cross_platform_byteswap_fix.patch
diff options
context:
space:
mode:
authorMatteo Bernardini <ponce@slackbuilds.org>2025-03-08 18:21:51 +0100
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2025-03-15 09:19:24 +0700
commit4f7036b95f1c7fec6a83258523bb3369124f3bdd (patch)
tree2ef7710edab8b9960d0671035010fe7e0c10c0cb /libraries/FreeImage/cross_platform_byteswap_fix.patch
parent9c7fc9e8cffa4c4ee0a93147f9ce8e0f317132cf (diff)
libraries/FreeImage: Fix line endings of the patches.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/FreeImage/cross_platform_byteswap_fix.patch')
-rw-r--r--libraries/FreeImage/cross_platform_byteswap_fix.patch36
1 files changed, 18 insertions, 18 deletions
diff --git a/libraries/FreeImage/cross_platform_byteswap_fix.patch b/libraries/FreeImage/cross_platform_byteswap_fix.patch
index c884882fbe..9ae51e7217 100644
--- a/libraries/FreeImage/cross_platform_byteswap_fix.patch
+++ b/libraries/FreeImage/cross_platform_byteswap_fix.patch
@@ -2,21 +2,21 @@ diff -up FreeImage/Source/LibJXR/image/decode/segdec.c.orig FreeImage/Source/Lib
--- FreeImage/Source/LibJXR/image/decode/segdec.c.orig 2024-08-18 02:32:53.595421505 -0500
+++ FreeImage/Source/LibJXR/image/decode/segdec.c 2024-08-18 02:33:41.184788298 -0500
@@ -29,6 +29,18 @@
- #include "strcodec.h"
- #include "decode.h"
-
-+// Conditional definition of _byteswap_ulong for cross-platform compatibility
-+#ifdef _MSC_VER
-+ #include <intrin.h> // Use the Microsoft-specific function on MSVC
-+#else
-+ #include <stdint.h> // Standard header for fixed-width integers
-+
-+ // Define the Microsoft-specific function for non-MSVC compilers
-+ static inline uint32_t _byteswap_ulong(uint32_t x) {
-+ return __builtin_bswap32(x); // GCC/Clang built-in function for Linux
-+ }
-+#endif
-+
- #ifdef MEM_TRACE
- #define TRACE_MALLOC 1
- #define TRACE_NEW 0
+ #include "strcodec.h"
+ #include "decode.h"
+
++// Conditional definition of _byteswap_ulong for cross-platform compatibility
++#ifdef _MSC_VER
++ #include <intrin.h> // Use the Microsoft-specific function on MSVC
++#else
++ #include <stdint.h> // Standard header for fixed-width integers
++
++ // Define the Microsoft-specific function for non-MSVC compilers
++ static inline uint32_t _byteswap_ulong(uint32_t x) {
++ return __builtin_bswap32(x); // GCC/Clang built-in function for Linux
++ }
++#endif
++
+ #ifdef MEM_TRACE
+ #define TRACE_MALLOC 1
+ #define TRACE_NEW 0