From 9de61b560ab6df0ed6ce99c8267fafbde9b00045 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Thu, 13 Apr 2006 12:03:12 +0000 Subject: r15072: Last bit of 32/64 bit portabilities fixes for winbind clients and aservers. Strange compiler-fu on 64-bit SLES9 says sizeof(time_t) == 4 but the memory alignment is on 8 bytes. Change time_t to uint32 to fix alignment. Remove 'char **gr_mem' from struct winbindd_gr since it was not being used. (This used to be commit b68e66d5c4f7348e674b8a009656ebfbbc06e288) --- source3/include/includes.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source3/include') diff --git a/source3/include/includes.h b/source3/include/includes.h index 1e59f50008d..a5f261282ce 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -21,6 +21,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +/* work around broken krb5.h on sles9 */ +#ifdef SIZEOF_LONG +#undef SIZEOF_LONG +#endif + #ifndef NO_CONFIG_H /* for some tests */ #include "config.h" #endif -- cgit