aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2005-09-17 09:10:35 +0000
committerEli Zaretskii2005-09-17 09:10:35 +0000
commitcbf223e18aeef870b5621eb94d4d165556498f7c (patch)
tree853e7fcfd1047f873ee713853ae4b40a9a4654d6 /src
parent8ccd36304db42afda019e6318696c82afed5fe85 (diff)
downloademacs-cbf223e18aeef870b5621eb94d4d165556498f7c.tar.gz
emacs-cbf223e18aeef870b5621eb94d4d165556498f7c.zip
(XMENU_OBJ) [!HAVE_CARBON]: Reinstate variable.
(obj): Use XMENU_OBJ, not a literal xmenu.o.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/Makefile.in7
2 files changed, 11 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6704efa084b..cbacb14078a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12005-09-17 Eli Zaretskii <eliz@gnu.org>
2
3 * Makefile.in (XMENU_OBJ) [!HAVE_CARBON]: Reinstate variable.
4 (obj): Use XMENU_OBJ, not a literal xmenu.o.
5
12005-09-16 Romain Francoise <romain@orebokech.com> 62005-09-16 Romain Francoise <romain@orebokech.com>
2 7
3 * fileio.c (syms_of_fileio) <write-region-inhibit-fsync>: Doc fix. 8 * fileio.c (syms_of_fileio) <write-region-inhibit-fsync>: Doc fix.
diff --git a/src/Makefile.in b/src/Makefile.in
index c085473d437..5cc933c9734 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -304,6 +304,11 @@ ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(TOOLKIT_DEFINES) $(MYCPPFLAGS) -I. -I${srcd
304#define LIB_X11_LIB -lX11 304#define LIB_X11_LIB -lX11
305#endif 305#endif
306 306
307/* xmenu.c should not be compiled on OSX. */
308#ifndef HAVE_CARBON
309XMENU_OBJ = xmenu.o
310#endif
311
307#ifdef HAVE_X_WINDOWS 312#ifdef HAVE_X_WINDOWS
308 313
309XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o xsmfns.o fringe.o image.o 314XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o xsmfns.o fringe.o image.o
@@ -570,7 +575,7 @@ emacsappsrc = ${srcdir}/../mac/Emacs.app/
570 575
571/* lastfile must follow all files 576/* lastfile must follow all files
572 whose initialized data areas should be dumped as pure by dump-emacs. */ 577 whose initialized data areas should be dumped as pure by dump-emacs. */
573obj= dispnew.o frame.o scroll.o xdisp.o xmenu.o window.o \ 578obj= dispnew.o frame.o scroll.o xdisp.o $(XMENU_OBJ) window.o \
574 charset.o coding.o category.o ccl.o \ 579 charset.o coding.o category.o ccl.o \
575 cm.o term.o xfaces.o $(XOBJ) $(GTK_OBJ)\ 580 cm.o term.o xfaces.o $(XOBJ) $(GTK_OBJ)\
576 emacs.o keyboard.o macros.o keymap.o sysdep.o \ 581 emacs.o keyboard.o macros.o keymap.o sysdep.o \