Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libgc
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2006-01-11 23:56:07 +0300
committerZoltan Varga <vargaz@gmail.com>2006-01-11 23:56:07 +0300
commitb46551e8ee4334d1f85415d007879da55ceb7a7d (patch)
treebdc1daa4a4001d4382ec4d7787f32317e0ce69f3 /libgc
parentec51af0830a39da21e2ff9b38221dceb1122a196 (diff)
2006-01-11 Zoltan Varga <vargaz@gmail.com>
* include/private/gcconfig.h: Undef _FILE_OFFSET_BITS on sparc. svn path=/trunk/mono/; revision=55398
Diffstat (limited to 'libgc')
-rw-r--r--libgc/ChangeLog4
-rw-r--r--libgc/include/private/gcconfig.h4
2 files changed, 8 insertions, 0 deletions
diff --git a/libgc/ChangeLog b/libgc/ChangeLog
index c26cb699653..169cc8d6986 100644
--- a/libgc/ChangeLog
+++ b/libgc/ChangeLog
@@ -1,3 +1,7 @@
+2006-01-11 Zoltan Varga <vargaz@gmail.com>
+
+ * include/private/gcconfig.h: Undef _FILE_OFFSET_BITS on sparc.
+
2006-01-03 Geoff Norton <gnorton@customerdna.com>
* darwin_stop_world.c: Merge a patch from Bruce Mitchener that fixes a small
diff --git a/libgc/include/private/gcconfig.h b/libgc/include/private/gcconfig.h
index c5ecb7e5ffb..2bbd38c4151 100644
--- a/libgc/include/private/gcconfig.h
+++ b/libgc/include/private/gcconfig.h
@@ -834,6 +834,10 @@
# define CPP_WORDSZ 32
# endif
# define ALIGN_DOUBLE
+# ifdef _FILE_OFFSET_BITS
+# undef _FILE_OFFSET_BITS /* libelf.h & procfs.h doesn't compile with large file support */
+# define _FILE_OFFSET_BITS 32
+# endif
# ifdef SUNOS5
# define OS_TYPE "SUNOS5"
extern int _etext[];