From 46258974d0527e299c82d36e31f9f160ee3e586f Mon Sep 17 00:00:00 2001 From: Vadim Troshchinskiy Date: Wed, 10 Mar 2021 00:25:20 +0100 Subject: nxcomp: Support Cygwin64. 64 bit Cygwin defines __CYGWIN__ instead of __CYGWIN32__ --- nxcomp/src/MD5.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nxcomp/src/MD5.c') 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 @@ -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 -- cgit v1.2.3