* solaris_pthreads.c: Avoid another solaris/x86 #error.
svn path=/trunk/mono/; revision=62063
+2006-06-26 Zoltan Varga <vargaz@gmail.com>
+
+ * solaris_pthreads.c: Avoid another solaris/x86 #error.
+
2006-04-08 Zoltan Varga <vargaz@gmail.com>
* dyn_load.c: Avoid #error "large files are not supported by libelf" errors on solaris/x86.
# include "private/gc_priv.h"
# if defined(GC_SOLARIS_PTHREADS)
+
+/* Avoid #error"Cannot use procfs in the large file compilation environment" */
+#if defined(_ILP32) && (_FILE_OFFSET_BITS != 32)
+#undef _FILE_OFFSET_BITS
+#define _FILE_OFFSET_BITS 32
+#endif
+
# include <pthread.h>
# include <thread.h>
# include <signal.h>