(C_DEBUG_SWITCH): Define to allow optimization.

This commit is contained in:
Dave Love 2000-02-17 19:11:45 +00:00
parent d621caf7c8
commit e3d4de904d
2 changed files with 9 additions and 0 deletions

View 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.

View 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