From cada820645c0d3293cf51d73aa80695f14793cc2 Mon Sep 17 00:00:00 2001 From: Christian Beier Date: Mon, 30 May 2016 15:02:33 +0200 Subject: [PATCH] Only include endian.h if present on system. --- rfb/rfbproto.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rfb/rfbproto.h b/rfb/rfbproto.h index 9eca868..ba643b1 100644 --- a/rfb/rfbproto.h +++ b/rfb/rfbproto.h @@ -81,12 +81,12 @@ #endif #endif -#if !defined(_WIN32) +#if LIBVNCSERVER_HAVE_ENDIAN_H # include # if __BYTE_ORDER == __BIG_ENDIAN # define LIBVNCSERVER_WORDS_BIGENDIAN 1 # endif -#endif /* !_WIN32 */ +#endif /* MS compilers don't have strncasecmp */ #ifdef _MSC_VER