]> code.delx.au - gnu-emacs/blobdiff - src/s/sol2-5.h
Reword header comment to prevent copyright.el wanting to update years.
[gnu-emacs] / src / s / sol2-5.h
index a98cf39b27b43c71eb31567b4e0700249f385813..90163987e6991a1ccf09b2f82003a6ada1c1a5a5 100644 (file)
@@ -5,21 +5,28 @@
 /* -lgen is needed for the regex and regcmp functions
    which are used by Motif.  In the future we can try changing
    regex.c to provide them in Emacs, but this is safer for now.  */
-#define LIB_MOTIF -lXm -lgen
+#define LIB_MOTIF -lXm -lgen
 
-#if 0 /* A recent patch in unexelf.c should eliminate the need for this.  */
-/* Don't use the shared libraries for -lXt and -lXaw,
-   to work around a linker bug in Solaris 2.5.
-   (This also affects the other libraries used specifically for
-   the X toolkit, which may not be necessary.)  */
-#define LIBXT_STATIC
+/* This is the only known way to avoid some crashes
+   that seem to relate to screwed up malloc data
+   after deleting a frame.  */
+/* rms: I think the problems using ralloc had to do with system
+   libraries that called the system malloc even if we linked in the
+   GNU malloc.  I could not see any way to fix the problem except to
+   have just one malloc and that had to be the system one.  */
+/* This is not always necessary.  Turned off at present for testers to
+   identify any problems with gmalloc more accurately.  */
+/* #define SYSTEM_MALLOC */
 
-#ifdef __GNUC__
-#define STATIC_OPTION -Xlinker -Bstatic
-#define DYNAMIC_OPTION -Xlinker -Bdynamic
-#else
-#define STATIC_OPTION -Bstatic
-#define DYNAMIC_OPTION -Bdynamic
-#endif
+/* There have problems reported with mmap at least on Solaris 2.6
+   and 2.7.  For simplicity, let's not use mmap for anything >= 2.5.
+   We can optimize this later.  */
 
-#endif /* 0 */
+#undef USE_MMAP_FOR_BUFFERS
+
+/* Probably OK also on earlier versions.  */
+#define GC_SETJMP_WORKS 1
+#define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS
+
+/* arch-tag: 96d65526-21c9-4547-a797-2bd575c05be7
+   (do not change this comment) */