diff options
| author | Richard M. Stallman | 1994-05-19 23:41:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-19 23:41:44 +0000 |
| commit | 5520f84fc62f8fb7ea0a9ee998c3f092342832ee (patch) | |
| tree | b56eba9f8c52cbdff667fa3aa354da45c25a93bf /src | |
| parent | 50d5aeb56cc293ceba0f0ecc5147b33f283d92b7 (diff) | |
| download | emacs-5520f84fc62f8fb7ea0a9ee998c3f092342832ee.tar.gz emacs-5520f84fc62f8fb7ea0a9ee998c3f092342832ee.zip | |
(FRAME_SUPPORT): Add menu-bar.el.
(ORDINARY_LINK): Define by default
if __GNU_LIBRARY__ and not LINUX.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 59e4ec98ad4..459a4b38ae5 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -80,6 +80,14 @@ MAKE = MAKE_COMMAND | |||
| 80 | CC = C_COMPILER | 80 | CC = C_COMPILER |
| 81 | #endif | 81 | #endif |
| 82 | 82 | ||
| 83 | /* GNU libc requires ORDINARY_LINK so that its own crt0 is used. | ||
| 84 | Linux is an exception because it uses a funny variant of GNU libc. */ | ||
| 85 | #ifdef __GNU_LIBRARY__ | ||
| 86 | #ifndef LINUX | ||
| 87 | #define ORDINARY_LINK | ||
| 88 | #endif | ||
| 89 | #endif | ||
| 90 | |||
| 83 | /* Some machines don't find the standard C libraries in the usual place. */ | 91 | /* Some machines don't find the standard C libraries in the usual place. */ |
| 84 | #ifndef ORDINARY_LINK | 92 | #ifndef ORDINARY_LINK |
| 85 | #ifndef LIB_STANDARD | 93 | #ifndef LIB_STANDARD |
| @@ -499,7 +507,8 @@ otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj) | |||
| 499 | #endif | 507 | #endif |
| 500 | 508 | ||
| 501 | #ifdef MULTI_FRAME | 509 | #ifdef MULTI_FRAME |
| 502 | #define FRAME_SUPPORT ${lispdir}frame.elc ${lispdir}mouse.elc ${lispdir}select.elc ${lispdir}scroll-bar.elc | 510 | #define FRAME_SUPPORT ${lispdir}frame.elc ${lispdir}menu-bar.elc \ |
| 511 | ${lispdir}mouse.elc ${lispdir}select.elc ${lispdir}scroll-bar.elc | ||
| 503 | #else | 512 | #else |
| 504 | #define FRAME_SUPPORT | 513 | #define FRAME_SUPPORT |
| 505 | #endif | 514 | #endif |