diff options
| author | Luc Teirlinck | 2005-04-16 00:30:45 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2005-04-16 00:30:45 +0000 |
| commit | 875baa3450e2d6289318f14dfd980a819a9c408f (patch) | |
| tree | f74882a96ee85d5a634c95d02fa5bed3f3bcab55 | |
| parent | 8a902fd27f39c392749445fe6f54a9435d954183 (diff) | |
| download | emacs-875baa3450e2d6289318f14dfd980a819a9c408f.tar.gz emacs-875baa3450e2d6289318f14dfd980a819a9c408f.zip | |
Define new macro TOOLTIP_SUPPORT.
(lisp): Use it.
(SOME_MACHINE_LISP): Add tooltip.
| -rw-r--r-- | src/Makefile.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index aed58290413..f0745ec39a0 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -686,6 +686,12 @@ otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj) $(LIBO | |||
| 686 | #define WINNT_SUPPORT | 686 | #define WINNT_SUPPORT |
| 687 | #endif | 687 | #endif |
| 688 | 688 | ||
| 689 | #ifdef HAVE_WINDOW_SYSTEM | ||
| 690 | #define TOOLTIP_SUPPORT ${lispsource}tooltip.elc | ||
| 691 | #else | ||
| 692 | #define TOOLTIP_SUPPORT | ||
| 693 | #endif | ||
| 694 | |||
| 689 | /* List of Lisp files loaded into the dumped Emacs. It's arranged | 695 | /* List of Lisp files loaded into the dumped Emacs. It's arranged |
| 690 | like this because it's easier to generate it semi-mechanically from | 696 | like this because it's easier to generate it semi-mechanically from |
| 691 | loadup.el this way. | 697 | loadup.el this way. |
| @@ -779,6 +785,7 @@ lisp= \ | |||
| 779 | ${lispsource}emacs-lisp/timer.elc \ | 785 | ${lispsource}emacs-lisp/timer.elc \ |
| 780 | ${lispsource}vc-hooks.elc \ | 786 | ${lispsource}vc-hooks.elc \ |
| 781 | ${lispsource}ediff-hook.elc \ | 787 | ${lispsource}ediff-hook.elc \ |
| 788 | TOOLTIP_SUPPORT \ | ||
| 782 | VMS_SUPPORT \ | 789 | VMS_SUPPORT \ |
| 783 | MSDOS_SUPPORT \ | 790 | MSDOS_SUPPORT \ |
| 784 | WINNT_SUPPORT \ | 791 | WINNT_SUPPORT \ |
| @@ -885,6 +892,7 @@ SOME_MACHINE_LISP = ${dotdot}/lisp/mouse.elc \ | |||
| 885 | ${dotdot}/lisp/ls-lisp.elc ${dotdot}/lisp/dos-fns.elc \ | 892 | ${dotdot}/lisp/ls-lisp.elc ${dotdot}/lisp/dos-fns.elc \ |
| 886 | ${dotdot}/lisp/w32-fns.elc ${dotdot}/lisp/dos-w32.elc \ | 893 | ${dotdot}/lisp/w32-fns.elc ${dotdot}/lisp/dos-w32.elc \ |
| 887 | ${dotdot}/lisp/disp-table.elc ${dotdot}/lisp/dos-vars.elc \ | 894 | ${dotdot}/lisp/disp-table.elc ${dotdot}/lisp/dos-vars.elc \ |
| 895 | ${dotdot}/lisp/tooltip.elc \ | ||
| 888 | ${dotdot}/lisp/international/ccl.elc \ | 896 | ${dotdot}/lisp/international/ccl.elc \ |
| 889 | ${dotdot}/lisp/international/codepage.elc | 897 | ${dotdot}/lisp/international/codepage.elc |
| 890 | 898 | ||