diff --git a/eo/doc/mainpage.html b/eo/doc/mainpage.html
index 8ba58f1d..8d2f76f4 100644
--- a/eo/doc/mainpage.html
+++ b/eo/doc/mainpage.html
@@ -76,6 +76,7 @@
- Linux-x86 with GCC 3.x and 4.x
- Linux-x86_64 with GCC 3.x
+ - Darwin-powerpc (Macintosh) with GCC 3.3
- CygWin (Windows XP) with GCC 3.3.1 (cygming special).
- Win95/NT with VC++ 5.0 and Borland Builder. Makefiles and
projects files are provided.
diff --git a/eo/src/utils/eoRNG.h b/eo/src/utils/eoRNG.h
index 99063b06..0efb2000 100644
--- a/eo/src/utils/eoRNG.h
+++ b/eo/src/utils/eoRNG.h
@@ -31,7 +31,14 @@
#ifndef EO_RANDOM_NUMBER_GENERATOR
#define EO_RANDOM_NUMBER_GENERATOR
+#ifdef HAVE_STDINT_H
#include
+#else
+#ifdef HAVE_INTTYPES_H
+#include
+#else
+#error Nedd header to define uint32_t. Please contact the EO mailing list.
+#endif
#include
#include "eoPersistent.h"
#include "eoObject.h"