summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordscho <dscho>2001-10-04 12:18:13 +0000
committerdscho <dscho>2001-10-04 12:18:13 +0000
commit1ed7f54eefa8d55640fcb4b6776b79db14a8c064 (patch)
treea5e878a7c32a7a9c4b18916fe1ec78c63999d94f
parentbd5fdd670ccae30a31d6b007c312b6d2a1a59cc0 (diff)
downloadlibtdevnc-1ed7f54e.tar.gz
libtdevnc-1ed7f54e.zip
tried to compile on Sparcs. Original cc has problems. ar isn't there.
-rw-r--r--rfb.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/rfb.h b/rfb.h
index 18bb2fa..e5722a7 100644
--- a/rfb.h
+++ b/rfb.h
@@ -61,9 +61,19 @@ int max(int,int);
#define _BYTE_ORDER BYTE_ORDER
#define _LITTLE_ENDIAN LITTLE_ENDIAN
#else
+#ifdef sparc
+#define _LITTLE_ENDIAN 1234
+#define _BYTE_ORDER _LITTLE_ENDIAN
+#undef Bool
+#define Bool char
+#include <sys/types.h>
+/* typedef unsigned int pthread_t; */
+/* SUN cc seems to have problems with inclusion of sys/types! */
+#else
#include <sys/endian.h>
#endif
#endif
+#endif
#ifndef _BYTE_ORDER
#define _BYTE_ORDER __BYTE_ORDER