svn commit: samba r15644 - in branches/SAMBA_3_0/source/include: .

paulg at samba.org paulg at samba.org
Tue May 16 17:02:26 GMT 2006


Author: paulg
Date: 2006-05-16 17:02:26 +0000 (Tue, 16 May 2006)
New Revision: 15644

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15644

Log:
Now that we are referencing uint32_t and other data types
defined in <stdint.h>, ensure that it is present. (Not all
implementations pull it in when <sys/types.h> is used).

Paul


Modified:
   branches/SAMBA_3_0/source/include/includes.h


Changeset:
Modified: branches/SAMBA_3_0/source/include/includes.h
===================================================================
--- branches/SAMBA_3_0/source/include/includes.h	2006-05-16 16:59:08 UTC (rev 15643)
+++ branches/SAMBA_3_0/source/include/includes.h	2006-05-16 17:02:26 UTC (rev 15644)
@@ -93,6 +93,10 @@
 
 #include <sys/types.h>
 
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
+
 #ifdef TIME_WITH_SYS_TIME
 #include <sys/time.h>
 #include <time.h>



More information about the samba-cvs mailing list