summaryrefslogtreecommitdiff
path: root/sci-libs/netcdf/files/netcdf-4.8.1-big-endian-build.patch
blob: afeff7e3fbd07074aa68d7a7a284f1f511f0eb81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Later version for 4.8.1 grabbed from Debian:
https://sources.debian.org/patches/netcdf/1:4.8.1-1/byteswap.patch/

Earlier version used:
https://github.com/DennisHeimbigner/netcdf-c/commit/6f86660da86f279cad1f2804cf3242767de27630.patch
https://github.com/Unidata/netcdf-c/issues/1687
https://bugs.gentoo.org/772863

Description: Add forward declarations for byteswap8 & byteswap4.
Author: Dennis Heimbigner
Bug: https://github.com/Unidata/netcdf-c/issues/1687

--- a/libdispatch/dfilter.c
+++ b/libdispatch/dfilter.c
@@ -20,6 +20,9 @@
 #include "hdf5internal.h"
 #endif
 
+static void byteswap8(unsigned char*);
+static void byteswap4(unsigned char*);
+
 /*
 Unified filter related code
 */