aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-05-13 21:23:23 -0700
committerGlenn Morris2010-05-13 21:23:23 -0700
commit177b028808f53afbb49328faeb683c2dd55a1794 (patch)
tree63c11bb2f82b546294a2ba039355a8f64cddb9ca
parent508197067c434b0111bcb6ded742d424bb738ece (diff)
downloademacs-177b028808f53afbb49328faeb683c2dd55a1794.tar.gz
emacs-177b028808f53afbb49328faeb683c2dd55a1794.zip
No harm in always defining some ns_ Makefile variables.
* src/Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define. * msdos/sed1v2.inp (ns_appdir, ns_appbindir, ns_appsrc): Edit to empty.
-rw-r--r--msdos/ChangeLog2
-rw-r--r--msdos/sed1v2.inp3
-rw-r--r--src/ChangeLog2
-rw-r--r--src/Makefile.in9
4 files changed, 10 insertions, 6 deletions
diff --git a/msdos/ChangeLog b/msdos/ChangeLog
index 780ec198d47..0c7752b0f66 100644
--- a/msdos/ChangeLog
+++ b/msdos/ChangeLog
@@ -1,5 +1,7 @@
12010-05-14 Glenn Morris <rgm@gnu.org> 12010-05-14 Glenn Morris <rgm@gnu.org>
2 2
3 * sed1v2.inp (ns_appdir, ns_appbindir, ns_appsrc): Edit to empty.
4
3 * sed1v2.inp (MSDOS_OBJ): Edit to dosfns.o msdos.o. 5 * sed1v2.inp (MSDOS_OBJ): Edit to dosfns.o msdos.o.
4 (MSDOS_SUPPORT): Edit to $(MSDOS_SUPPORT_REAL). 6 (MSDOS_SUPPORT): Edit to $(MSDOS_SUPPORT_REAL).
5 * sed1x.inp (MSDOS_X_OBJ): Edit to w16select.o termcap.o. 7 * sed1x.inp (MSDOS_X_OBJ): Edit to w16select.o termcap.o.
diff --git a/msdos/sed1v2.inp b/msdos/sed1v2.inp
index 5ebaba06f60..2d1b2bf5f59 100644
--- a/msdos/sed1v2.inp
+++ b/msdos/sed1v2.inp
@@ -91,6 +91,9 @@ s/\.h\.in/.h-in/
91/^CYGWIN_OBJ *=/s/@CYGWIN_OBJ@// 91/^CYGWIN_OBJ *=/s/@CYGWIN_OBJ@//
92/^MSDOS_OBJ *=/s/= */= dosfns.o msdos.o/ 92/^MSDOS_OBJ *=/s/= */= dosfns.o msdos.o/
93/^MSDOS_SUPPORT *=/s/= */= $(MSDOS_SUPPORT_REAL)/ 93/^MSDOS_SUPPORT *=/s/= */= $(MSDOS_SUPPORT_REAL)/
94/^ns_appdir *=/s/@ns_appdir@//
95/^ns_appbindir *=/s/@ns_appbindir@//
96/^ns_appsrc *=/s/@ns_appsrc@//
94/^NS_OBJ *=/s/@NS_OBJ@// 97/^NS_OBJ *=/s/@NS_OBJ@//
95/^NS_SUPPORT *=/s/@NS_SUPPORT@// 98/^NS_SUPPORT *=/s/@NS_SUPPORT@//
96/^GNU_OBJC_CFLAGS*=/s/@GNU_OBJC_CFLAGS@// 99/^GNU_OBJC_CFLAGS*=/s/@GNU_OBJC_CFLAGS@//
diff --git a/src/ChangeLog b/src/ChangeLog
index 7ffb5800753..b2e1897ca76 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -5,6 +5,8 @@
5 5
62010-05-14 Glenn Morris <rgm@gnu.org> 62010-05-14 Glenn Morris <rgm@gnu.org>
7 7
8 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define.
9
8 * Makefile.in (mktime, X11, register): Move undefs to configure. 10 * Makefile.in (mktime, X11, register): Move undefs to configure.
9 11
10 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it. 12 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it.
diff --git a/src/Makefile.in b/src/Makefile.in
index 3a0339a3f70..8c723d1c886 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -194,6 +194,9 @@ MSDOS_SUPPORT_REAL = ${lispsource}ls-lisp.elc ${lispsource}disp-table.elc \
194## $MSDOS_SUPPORT_REAL if MSDOS. 194## $MSDOS_SUPPORT_REAL if MSDOS.
195MSDOS_SUPPORT = 195MSDOS_SUPPORT =
196 196
197ns_appdir=@ns_appdir@/
198ns_appbindir=@ns_appbindir@/
199ns_appsrc=@ns_appsrc@
197NS_OBJ=@NS_OBJ@ 200NS_OBJ=@NS_OBJ@
198NS_SUPPORT=@NS_SUPPORT@ 201NS_SUPPORT=@NS_SUPPORT@
199## Next two only set if NS_IMPL_GNUSTEP. 202## Next two only set if NS_IMPL_GNUSTEP.
@@ -333,12 +336,6 @@ LD=ld
333 336
334#endif /* not ORDINARY_LINK */ 337#endif /* not ORDINARY_LINK */
335 338
336#ifdef HAVE_NS
337ns_appdir=@ns_appdir@/
338ns_appbindir=@ns_appbindir@/
339ns_appsrc=@ns_appsrc@
340#endif /* HAVE_NS */
341
342/* lastfile must follow all files whose initialized data areas should 339/* lastfile must follow all files whose initialized data areas should
343 be dumped as pure by dump-emacs. */ 340 be dumped as pure by dump-emacs. */
344obj= dispnew.o frame.o scroll.o xdisp.o menu.o $(XMENU_OBJ) window.o \ 341obj= dispnew.o frame.o scroll.o xdisp.o menu.o $(XMENU_OBJ) window.o \