summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-07-03 18:33:16 +0000
committerJeremy Allison <jra@samba.org>2001-07-03 18:33:16 +0000
commit33a299a0c42bb7090e2030fb1e5cafdf07346bc6 (patch)
tree141403c5218b24c269bbb61b5d66910c6847970b
parent310d2af6b0797cbd4f776b5c6c5b90a5d86b1aa9 (diff)
downloadsamba-33a299a0c42bb7090e2030fb1e5cafdf07346bc6.tar.gz
samba-33a299a0c42bb7090e2030fb1e5cafdf07346bc6.tar.xz
samba-33a299a0c42bb7090e2030fb1e5cafdf07346bc6.zip
Added #define of int32 to int for cray. This will almost certainly cause
the rpc code to fail on the cray.... Jeremy.
-rw-r--r--source/include/includes.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/include/includes.h b/source/include/includes.h
index 96688c5217e..c5f4720a5af 100644
--- a/source/include/includes.h
+++ b/source/include/includes.h
@@ -434,6 +434,9 @@ typedef int socklen_t;
#define int32 long
#elif (SIZEOF_SHORT == 4)
#define int32 short
+#else
+/* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */
+#define uint32 int
#endif
#endif