From 1b5af57b2f6a03d67d99a718ddac2b4830bd13cd Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 3 Jul 2001 18:33:16 +0000 Subject: Added #define of int32 to int for cray. This will almost certainly cause the rpc code to fail on the cray.... Jeremy. (This used to be commit 33a299a0c42bb7090e2030fb1e5cafdf07346bc6) --- source3/include/includes.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source3/include/includes.h b/source3/include/includes.h index 96688c5217..c5f4720a5a 100644 --- a/source3/include/includes.h +++ b/source3/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 -- cgit