summaryrefslogtreecommitdiffstats
path: root/graphics/libecwj2/files/patch-Source-C-NCSUtil-util.c
blob: 53ae91e1d8f5a8ddefedf5c78bd42ed0cbdfb55d (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
--- Source/C/NCSUtil/util.c.orig	2009-04-05 21:59:28.000000000 +0400
+++ Source/C/NCSUtil/util.c	2009-04-05 22:05:04.000000000 +0400
@@ -163,15 +163,9 @@
 	if(nSizeBytes < 1024) {
 #ifdef WIN32
 		sprintf(buf, "%I64d bytes", nSizeBytes);
-#elif defined SOLARIS
-		sprintf(buf, "%lld bytes", nSizeBytes);
 #elif defined MACINTOSH
 		sprintf(buf, "%I64d bytes", nSizeBytes);
-#elif defined HPUX
-		sprintf(buf, "%lld bytes", nSizeBytes);
-#elif defined LINUX
-		sprintf(buf, "%lld bytes", nSizeBytes);
-#elif defined MACOSX
+#elif defined POSIX
 		sprintf(buf, "%lld bytes", nSizeBytes);
 #else
 #error whats the 64bit format specifier?
@@ -306,6 +300,10 @@
 
 	return(NCS_MACINTOSH_OSX);
 
+#elif defined FREEBSD
+
+	return(NCS_FREEBSD);
+
 #else	/* WIN32 */
 #error - NCSGetPlatform()
 #endif	/* WIN32 */
OpenPOWER on IntegriCloud