aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2004-03-11 11:05:55 +0000
committerKim F. Storm2004-03-11 11:05:55 +0000
commita12d3d87002bdab094638ea55ad096688096e3c2 (patch)
tree7593a83efea90b6fd8f3a827062434894873b48c /src
parent2ceed428a9d3fe7e3747c7c2266e73791ef2f56c (diff)
downloademacs-a12d3d87002bdab094638ea55ad096688096e3c2.tar.gz
emacs-a12d3d87002bdab094638ea55ad096688096e3c2.zip
(XOBJ): Consolidate into one list. Add fringe.o.
Move gtkutil.o to new GTK_OBJ list. (XMENU_OBJ) [HAVE_MENUS]: Move declaration to proper place. (GTK_OBJ) [USE_GTK]: New declaration. (obj): Add $(GTK_OBJ) to list.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog8
-rw-r--r--src/Makefile.in20
2 files changed, 17 insertions, 11 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index df407ca48b9..fdbabd0e0f8 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,11 @@
12004-03-11 Kim F. Storm <storm@cua.dk>
2
3 * Makefile.in (XOBJ): Consolidate into one list. Add fringe.o.
4 Move gtkutil.o to new GTK_OBJ list.
5 (XMENU_OBJ) [HAVE_MENUS]: Move declaration to proper place.
6 (GTK_OBJ) [USE_GTK]: New declaration.
7 (obj): Add $(GTK_OBJ) to list.
8
12004-03-11 Steven Tamm <steventamm@mac.com> 92004-03-11 Steven Tamm <steventamm@mac.com>
2 * image.c [MAC_OSX]: Include sys/stat.h 10 * image.c [MAC_OSX]: Include sys/stat.h
3 11
diff --git a/src/Makefile.in b/src/Makefile.in
index 5eebc10fb6d..3b6f731e531 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -305,14 +305,17 @@ ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(TOOLKIT_DEFINES) $(MYCPPFLAGS) -I. -I${srcd
305#endif 305#endif
306 306
307#ifdef HAVE_X_WINDOWS 307#ifdef HAVE_X_WINDOWS
308
309XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o xsmfns.o fringe.o image.o
310
308#ifdef HAVE_MENUS 311#ifdef HAVE_MENUS
309 312
310/* Include xmenu.o in the list of X object files. */ 313#ifndef HAVE_CARBON
314XMENU_OBJ = xmenu.o
315#endif
311 316
312#ifdef USE_GTK 317#ifdef USE_GTK
313XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o xsmfns.o gtkutil.o fringe.o 318GTK_OBJ= gtkutil.o
314#else
315XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o xsmfns.o fringe.o
316#endif 319#endif
317 320
318/* The X Menu stuff is present in the X10 distribution, but missing 321/* The X Menu stuff is present in the X10 distribution, but missing
@@ -332,9 +335,7 @@ LIBXMENU= -lXMenu
332 335
333#else /* not HAVE_MENUS */ 336#else /* not HAVE_MENUS */
334 337
335/* Otherwise, omit xmenu.o from the list of X object files, and 338/* Otherwise, don't worry about the menu library at all. */
336 don't worry about the menu library at all. */
337XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o xsmfns.o fringe.o image.o
338LIBXMENU= 339LIBXMENU=
339#endif /* not HAVE_MENUS */ 340#endif /* not HAVE_MENUS */
340 341
@@ -561,19 +562,16 @@ MSDOS_OBJ = dosfns.o msdos.o w16select.o
561 562
562#ifdef HAVE_CARBON 563#ifdef HAVE_CARBON
563mac = $(dot)$(dot)/mac/ 564mac = $(dot)$(dot)/mac/
564XMENU_OBJ =
565MAC_OBJ = mac.o macterm.o macfns.o macmenu.o fontset.o fringe.o image.o 565MAC_OBJ = mac.o macterm.o macfns.o macmenu.o fontset.o fringe.o image.o
566emacsapp = $(PWD)/$(mac)Emacs.app/ 566emacsapp = $(PWD)/$(mac)Emacs.app/
567emacsappsrc = ${srcdir}/../mac/Emacs.app/ 567emacsappsrc = ${srcdir}/../mac/Emacs.app/
568#else
569XMENU_OBJ = xmenu.o
570#endif 568#endif
571 569
572/* lastfile must follow all files 570/* lastfile must follow all files
573 whose initialized data areas should be dumped as pure by dump-emacs. */ 571 whose initialized data areas should be dumped as pure by dump-emacs. */
574obj= dispnew.o frame.o scroll.o xdisp.o $(XMENU_OBJ) window.o \ 572obj= dispnew.o frame.o scroll.o xdisp.o $(XMENU_OBJ) window.o \
575 charset.o coding.o category.o ccl.o \ 573 charset.o coding.o category.o ccl.o \
576 cm.o term.o xfaces.o $(XOBJ) \ 574 cm.o term.o xfaces.o $(XOBJ) $(GTK_OBJ)\
577 emacs.o keyboard.o macros.o keymap.o sysdep.o \ 575 emacs.o keyboard.o macros.o keymap.o sysdep.o \
578 buffer.o filelock.o insdel.o marker.o \ 576 buffer.o filelock.o insdel.o marker.o \
579 minibuf.o fileio.o dired.o filemode.o \ 577 minibuf.o fileio.o dired.o filemode.o \