aboutsummaryrefslogtreecommitdiffstats
path: root/src/s
diff options
context:
space:
mode:
authorKenichi Handa2000-11-21 00:31:45 +0000
committerKenichi Handa2000-11-21 00:31:45 +0000
commit1a55ec5a9e71f4b6539327508110c703c0365372 (patch)
tree921361a9e231bad8c44f79edc783b27519acfe2b /src/s
parentc51d2b5e2962d547e69791d49a4ef7002422199e (diff)
downloademacs-1a55ec5a9e71f4b6539327508110c703c0365372.tar.gz
emacs-1a55ec5a9e71f4b6539327508110c703c0365372.zip
Move #undef USE_MMAP_FOR_BUFFERS out of #if 0 ... #endif scope.
Diffstat (limited to 'src/s')
-rw-r--r--src/s/sol2-5.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/s/sol2-5.h b/src/s/sol2-5.h
index 766b7f1c9fb..8b44a130149 100644
--- a/src/s/sol2-5.h
+++ b/src/s/sol2-5.h
@@ -27,6 +27,12 @@
27 identify any problems with gmalloc more accurately. */ 27 identify any problems with gmalloc more accurately. */
28/* #define SYSTEM_MALLOC */ 28/* #define SYSTEM_MALLOC */
29 29
30/* There have problems reported with mmap at least on Solaris 2.6
31 and 2.7. For simplicity, let's not use mmap for anything >= 2.5.
32 We can optimize this later. */
33
34#undef USE_MMAP_FOR_BUFFERS
35
30#if 0 /* A recent patch in unexelf.c should eliminate the need for this. */ 36#if 0 /* A recent patch in unexelf.c should eliminate the need for this. */
31/* Don't use the shared libraries for -lXt and -lXaw, 37/* Don't use the shared libraries for -lXt and -lXaw,
32 to work around a linker bug in Solaris 2.5. 38 to work around a linker bug in Solaris 2.5.
@@ -42,10 +48,4 @@
42#define DYNAMIC_OPTION -Bdynamic 48#define DYNAMIC_OPTION -Bdynamic
43#endif 49#endif
44 50
45/* There have problems reported with mmap at least on Solaris 2.6
46 and 2.7. For simplicity, let's not use mmap for anything >= 2.5.
47 We can optimize this later. */
48
49#undef USE_MMAP_FOR_BUFFERS
50
51#endif /* 0 */ 51#endif /* 0 */