aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2003-07-12 21:48:07 +0000
committerRichard M. Stallman2003-07-12 21:48:07 +0000
commit69e38995354befdc5e97820660875ac2a32896b9 (patch)
treebbd94f70da223e5de4faf9ec24bdee2d643e4a15 /src
parentc378fed527474148cfa64607487acac9948a3703 (diff)
downloademacs-69e38995354befdc5e97820660875ac2a32896b9.tar.gz
emacs-69e38995354befdc5e97820660875ac2a32896b9.zip
(CFLAGS) [!OPTIMIZE]: Set CFLAGS to -g.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog19
-rw-r--r--src/Makefile.in5
2 files changed, 24 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 95308474292..241636e3fd3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,22 @@
12003-07-12 Richard M. Stallman <rms@gnu.org>
2
3 * Makefile.in (CFLAGS) [!OPTIMIZE]: Set CFLAGS to -g.
4
5 * config.in (HAVE_CRTIN): Add #undef.
6 (INLINE): Really inline only if OPTIMIZE is defined.
7
8 * s/netbsd.h (START_FILES, LIB_STANDARD): Use START_FILES_1,
9 END_FILES_1.
10 (START_FILES_1, END_FILES_1): New macros (conditional).
11 (LD_SWITCH_SYSTEM_TEMACS): Defined.
12
13 * s/openbsd.h: Don't include bsd4-3.h.
14 (TERMINFO): Defined.
15 (LIBS_TERMCAP): Defined.
16 (LD_SWITCH_SYSTEM): Defined (two definitions).
17
18 * xfns.c: Include libpng/png.h instead of png.h.
19
12003-07-11 Andreas Schwab <schwab@suse.de> 202003-07-11 Andreas Schwab <schwab@suse.de>
2 21
3 * buffer.c (modify_overlay): Update prototype. 22 * buffer.c (modify_overlay): Update prototype.
diff --git a/src/Makefile.in b/src/Makefile.in
index 1961dfcdb13..32b5d7fe439 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -74,6 +74,11 @@ SHELL=/bin/sh
74#define NOT_C_CODE 74#define NOT_C_CODE
75#include "config.h" 75#include "config.h"
76 76
77#ifndef OPTIMIZE
78CFLAGS=-g
79#endif
80
81
77/* We won't really call alloca; 82/* We won't really call alloca;
78 don't let the file name alloca.c get messed up. */ 83 don't let the file name alloca.c get messed up. */
79#ifdef alloca 84#ifdef alloca