diff options
author | Jeremy Allison <jra@samba.org> | 2001-07-03 18:33:16 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-07-03 18:33:16 +0000 |
commit | 1b5af57b2f6a03d67d99a718ddac2b4830bd13cd (patch) | |
tree | 5c77e851bd2f9f4e0a109719e8c0c9ad14a449cb | |
parent | 0eb28dc851cf4c970dab01a3ef6da15bad3b4fa2 (diff) | |
download | samba-1b5af57b2f6a03d67d99a718ddac2b4830bd13cd.tar.gz samba-1b5af57b2f6a03d67d99a718ddac2b4830bd13cd.tar.bz2 samba-1b5af57b2f6a03d67d99a718ddac2b4830bd13cd.zip |
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)
-rw-r--r-- | source3/include/includes.h | 3 |
1 files changed, 3 insertions, 0 deletions
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 |