aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorKarl Heuer1994-04-27 20:20:31 +0000
committerKarl Heuer1994-04-27 20:20:31 +0000
commit82a635f37787df7b81b5acc2b3bd1550c1e98e53 (patch)
tree6acaf5af05bc7af881f8f5ac7044594ae17239e6 /lib-src
parent3fa89e8c0fe939d90dc6980dbf9a6b7474d8b999 (diff)
downloademacs-82a635f37787df7b81b5acc2b3bd1550c1e98e53.tar.gz
emacs-82a635f37787df7b81b5acc2b3bd1550c1e98e53.zip
C_SWITCH_SYSTEM and C_SWITCH_MACHINE are now cpp symbols, not make variables.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/Makefile.in16
1 files changed, 11 insertions, 5 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in
index 6c9abec7947..94cb500bfff 100644
--- a/lib-src/Makefile.in
+++ b/lib-src/Makefile.in
@@ -32,6 +32,14 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
32#define LIBS_MACHINE 32#define LIBS_MACHINE
33#endif 33#endif
34 34
35#ifndef C_SWITCH_SYSTEM
36#define C_SWITCH_SYSTEM
37#endif
38
39#ifndef C_SWITCH_MACHINE
40#define C_SWITCH_MACHINE
41#endif
42
35#undef MOVEMAIL_NEEDS_BLESSING 43#undef MOVEMAIL_NEEDS_BLESSING
36#ifndef MAIL_USE_FLOCK 44#ifndef MAIL_USE_FLOCK
37#ifndef MAIL_USE_LOCKF 45#ifndef MAIL_USE_LOCKF
@@ -54,8 +62,6 @@ SHELL = /bin/sh
54CC=@CC@ 62CC=@CC@
55CFLAGS=@CFLAGS@ 63CFLAGS=@CFLAGS@
56ALLOCA=@ALLOCA@ 64ALLOCA=@ALLOCA@
57C_SWITCH_SYSTEM=@c_switch_system@
58C_SWITCH_MACHINE=@c_switch_machine@
59LOADLIBES=LIBS_SYSTEM LIBS_MACHINE 65LOADLIBES=LIBS_SYSTEM LIBS_MACHINE
60YACC=@YACC@ 66YACC=@YACC@
61version=@version@ 67version=@version@
@@ -136,11 +142,11 @@ SOURCES = COPYING ChangeLog Makefile.in README aixcc.lex emacs.csh \
136 Some other files - those shared with other GNU utilities - need 142 Some other files - those shared with other GNU utilities - need
137 HAVE_CONFIG_H #defined before they know they can take advantage of 143 HAVE_CONFIG_H #defined before they know they can take advantage of
138 the information in ../src/config.h. */ 144 the information in ../src/config.h. */
139ALL_CFLAGS = ${C_SWITCH_SYSTEM} ${C_SWITCH_MACHINE} -Demacs -DHAVE_CONFIG_H \ 145ALL_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \
140 -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CPPFLAGS} ${CFLAGS} 146 -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CPPFLAGS} ${CFLAGS}
141LINK_CFLAGS = ${C_SWITCH_SYSTEM} ${C_SWITCH_MACHINE} -Demacs -DHAVE_CONFIG_H \ 147LINK_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \
142 -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CFLAGS} 148 -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CFLAGS}
143CPP_CFLAGS = ${C_SWITCH_SYSTEM} ${C_SWITCH_MACHINE} -Demacs -DHAVE_CONFIG_H \ 149CPP_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \
144 -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} 150 -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS}
145 151
146/* This is the default compilation command. 152/* This is the default compilation command.