diff options
| author | Jan Djärv | 2002-03-10 16:18:42 +0000 |
|---|---|---|
| committer | Jan Djärv | 2002-03-10 16:18:42 +0000 |
| commit | 618c30cbfcedc1764b556b6684f724d3d000e492 (patch) | |
| tree | d72beae97e36d1aed5d520c3fe7693386e30ce13 /src | |
| parent | 9b3bf3878725ca4093c9719fb3bc3212657711ef (diff) | |
| download | emacs-618c30cbfcedc1764b556b6684f724d3d000e492.tar.gz emacs-618c30cbfcedc1764b556b6684f724d3d000e492.zip | |
Added test for HAVE_X_SM and added new file xsmfns.c
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index fb5a69c74a6..35bf2084c37 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -294,7 +294,7 @@ ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(TOOLKIT_DEFINES) $(MYCPPFLAG) -I. -I${srcdi | |||
| 294 | #ifdef HAVE_MENUS | 294 | #ifdef HAVE_MENUS |
| 295 | 295 | ||
| 296 | /* Include xmenu.o in the list of X object files. */ | 296 | /* Include xmenu.o in the list of X object files. */ |
| 297 | XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o | 297 | XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o xsmfns.o |
| 298 | 298 | ||
| 299 | /* The X Menu stuff is present in the X10 distribution, but missing | 299 | /* The X Menu stuff is present in the X10 distribution, but missing |
| 300 | from X11. If we have X10, just use the installed library; | 300 | from X11. If we have X10, just use the installed library; |
| @@ -315,7 +315,7 @@ LIBXMENU= -lXMenu | |||
| 315 | 315 | ||
| 316 | /* Otherwise, omit xmenu.o from the list of X object files, and | 316 | /* Otherwise, omit xmenu.o from the list of X object files, and |
| 317 | don't worry about the menu library at all. */ | 317 | don't worry about the menu library at all. */ |
| 318 | XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o | 318 | XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o xsmfns.o |
| 319 | LIBXMENU= | 319 | LIBXMENU= |
| 320 | #endif /* not HAVE_MENUS */ | 320 | #endif /* not HAVE_MENUS */ |
| 321 | 321 | ||
| @@ -366,7 +366,11 @@ LIBXT= $(LIBW) LIBXMU -lXt $(LIBXTR6) -lXext | |||
| 366 | #endif /* not LIBXT_STATIC */ | 366 | #endif /* not LIBXT_STATIC */ |
| 367 | 367 | ||
| 368 | #else /* not USE_X_TOOLKIT */ | 368 | #else /* not USE_X_TOOLKIT */ |
| 369 | #ifdef HAVE_X_SM | ||
| 370 | LIBXT=-lSM -lICE | ||
| 371 | #else | ||
| 369 | LIBXT= | 372 | LIBXT= |
| 373 | #endif | ||
| 370 | #endif /* not USE_X_TOOLKIT */ | 374 | #endif /* not USE_X_TOOLKIT */ |
| 371 | 375 | ||
| 372 | #if HAVE_XPM | 376 | #if HAVE_XPM |
| @@ -549,7 +553,7 @@ obj= dispnew.o frame.o scroll.o xdisp.o xmenu.o window.o \ | |||
| 549 | These go in the DOC file on all machines | 553 | These go in the DOC file on all machines |
| 550 | in case they are needed there. */ | 554 | in case they are needed there. */ |
| 551 | SOME_MACHINE_OBJECTS = sunfns.o dosfns.o msdos.o \ | 555 | SOME_MACHINE_OBJECTS = sunfns.o dosfns.o msdos.o \ |
| 552 | xterm.o xfns.o xmenu.o xselect.o xrdb.o | 556 | xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o |
| 553 | 557 | ||
| 554 | 558 | ||
| 555 | #ifdef TERMINFO | 559 | #ifdef TERMINFO |
| @@ -1128,6 +1132,7 @@ xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h buffer.h \ | |||
| 1128 | xselect.o: xselect.c dispextern.h frame.h xterm.h blockinput.h charset.h \ | 1132 | xselect.o: xselect.c dispextern.h frame.h xterm.h blockinput.h charset.h \ |
| 1129 | coding.h ccl.h buffer.h atimer.h systime.h $(config_h) | 1133 | coding.h ccl.h buffer.h atimer.h systime.h $(config_h) |
| 1130 | xrdb.o: xrdb.c $(config_h) epaths.h | 1134 | xrdb.o: xrdb.c $(config_h) epaths.h |
| 1135 | xsmfns.o: xsmfns.c $(config_h) systime.h sysselect.h lisp.h termhooks.h | ||
| 1131 | hftctl.o: hftctl.c $(config_h) | 1136 | hftctl.o: hftctl.c $(config_h) |
| 1132 | sound.o: sound.c dispextern.h $(config_h) | 1137 | sound.o: sound.c dispextern.h $(config_h) |
| 1133 | atimer.o: atimer.c atimer.h systime.h $(config_h) | 1138 | atimer.o: atimer.c atimer.h systime.h $(config_h) |