]> git.eshelyaron.com Git - emacs.git/commitdiff
(C_DEBUG_SWITCH): Define to allow optimization.
authorDave Love <fx@gnu.org>
Thu, 17 Feb 2000 19:11:45 +0000 (19:11 +0000)
committerDave Love <fx@gnu.org>
Thu, 17 Feb 2000 19:11:45 +0000 (19:11 +0000)
src/ChangeLog
src/s/sol2.h

index c82c941fe81c092f9acfa365b990400e65ec6eee..55a7257545bf6c90aeef972a958aeff114a550a4 100644 (file)
@@ -1,3 +1,7 @@
+2000-02-17  Dave Love  <fx@gnu.org>
+
+       * s/sol2.h (C_DEBUG_SWITCH): Define to allow optimization.
+
 2000-02-17  Gerd Moellmann  <gerd@gnu.org>
 
        * emacs.c (main): Use #if GC_MARK_STACK instead of #ifdef.
index f44ae16c66d7138a84e716b869af5070661539f4..5633a0a316c391af5f77c401ccfc984225cf659f 100644 (file)
@@ -29,3 +29,8 @@
 /* Prefer kstat over kvm in getloadavg.c, kstat doesn't require root.
    ghazi@caip.rutgers.edu, 7/21/97. */
 #define HAVE_LIBKSTAT
+
+/* eggert thinks all versions of SunPro C allowed this.  */
+#ifndef __GNUC__
+#define C_DEBUG_SWITCH -g -O
+#endif