summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Green <paulg@samba.org>2006-05-16 17:02:26 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:17:05 -0500
commit5255388e958573feb9121bd5ed934739a1f43306 (patch)
tree94e61363cb893fdb70f169213acfb67d888c92b6
parentc290d34985830c343b19cc4ffde33ff3e67272d5 (diff)
downloadsamba-5255388e958573feb9121bd5ed934739a1f43306.tar.gz
samba-5255388e958573feb9121bd5ed934739a1f43306.tar.bz2
samba-5255388e958573feb9121bd5ed934739a1f43306.zip
r15644: 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 (This used to be commit dafe36ec4cff4e5f94e35841966007e3e4758582)
-rw-r--r--source3/include/includes.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h
index a13cffea14..a74ca7084d 100644
--- a/source3/include/includes.h
+++ b/source3/include/includes.h
@@ -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>