aboutsummaryrefslogtreecommitdiff
path: root/nxcomp/src/MD5.c
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-06-08 08:17:37 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-06-08 08:17:37 +0200
commit00711f914d4b0ca76ca66c0225f257d6192807e2 (patch)
treeeb058b5ebd1d644528831ec37648bfba31070cfb /nxcomp/src/MD5.c
parent9815f32d5c7c397c5a27a53764565beda2d007c2 (diff)
parentff0c2b1484e6e8a9f47d4ba78bbff54bf734c2f1 (diff)
downloadnx-libs-00711f914d4b0ca76ca66c0225f257d6192807e2.tar.gz
nx-libs-00711f914d4b0ca76ca66c0225f257d6192807e2.tar.bz2
nx-libs-00711f914d4b0ca76ca66c0225f257d6192807e2.zip
Merge branch 'vatral-support_cygwin64' into 3.6.x
Attributes GH PR #1008: https://github.com/ArcticaProject/nx-libs/pull/1008
Diffstat (limited to 'nxcomp/src/MD5.c')
-rw-r--r--nxcomp/src/MD5.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nxcomp/src/MD5.c b/nxcomp/src/MD5.c
index 43a2793e3..f5bc01761 100644
--- a/nxcomp/src/MD5.c
+++ b/nxcomp/src/MD5.c
@@ -64,7 +64,7 @@
* at compile time.
*/
-#if defined(__linux) || defined(__CYGWIN32__)
+#if defined(__linux) || defined(__CYGWIN__) || defined(__CYGWIN32__)
#include <endian.h>
@@ -74,7 +74,7 @@
#define ARCH_IS_BIG_ENDIAN 1
#endif
-#endif /* #if defined(__linux) || defined(__CYGWIN32__) */
+#endif /* #if defined(__linux) || defined(__CYGWIN__) || defined(__CYGWIN32__) */
#undef BYTE_ORDER /* 1 = big-endian, -1 = little-endian, 0 = unknown */
#ifdef ARCH_IS_BIG_ENDIAN