summaryrefslogtreecommitdiffstats
path: root/graphics/libecwj2/files/patch-Source-include-NCSDefs.h
blob: 7d5288ed4de20ea1ee92dc1a93ae3b6171815172 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
--- Source/include/NCSDefs.h.orig	2006-07-03 05:15:22.000000000 +0400
+++ Source/include/NCSDefs.h	2010-07-29 16:08:26.000000000 +0400
@@ -57,10 +57,12 @@
 #define NCS_64BIT
 #endif
 
-#if (defined(MACINTOSH)||defined(SOLARIS)||defined(IRIX)||defined(PALM)||defined(HPUX)||defined(MACOSX))&&(!defined(X86))
-#define NCSBO_MSBFIRST
-#else	// WIN32, LINUX (i386)
-#define NCSBO_LSBFIRST
+#include <machine/endian.h>
+
+#if (BYTE_ORDER == LITTLE_ENDIAN)
+#define	NCSBO_LSBFIRST
+#else
+#define	NCSBO_MSBFIRST
 #endif
 
 #if !defined(_WIN32_WCE)&&!defined(UNALIGNED)
@@ -180,13 +182,15 @@
 #define IntersectRect(A, B, C) SectRect(B, C, A)
 #define 	ZeroMemory(DATA, SIZE) memset(DATA, 0, SIZE)
 
-#elif defined SOLARIS || defined LINUX || defined HPUX
+#elif defined SOLARIS || defined LINUX || defined HPUX || defined FREEBSD
 
-#ifdef LINUX
+#if defined LINUX || defined FREEBSD
 #define wcsicmp wcscasecmp
 #endif
 
+#ifndef FREEBSD
 #include <values.h>
+#endif
 #include <limits.h>
 #include <ctype.h>
 #include <math.h>
@@ -195,7 +199,7 @@
 #define MAXDOUBLE   DBL_MAX			//1.7976931348623158e+308
 #endif	/* !MAXDOUBLE */
 
-#ifdef LINUX
+#if defined LINUX || defined FREEBSD
 #define NCS_FQNAN	NAN	//0x0002
 #define NCS_NAN		NAN
 #elif defined(SOLARIS)
@@ -299,7 +303,7 @@
 
 #define MAX_PATH 	1024
 
-#elif defined SOLARIS || defined LINUX || defined HPUX
+#elif defined SOLARIS || defined LINUX || defined HPUX || defined FREEBSD
 
 #define MAX_PATH	PATH_MAX
 
OpenPOWER on IntegriCloud