Mercurial > emacs
changeset 7580:68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
(ORDINARY_LINK): Define by default
if __GNU_LIBRARY__ and not LINUX.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 19 May 1994 23:41:44 +0000 |
parents | 782afa5d95cb |
children | 9c97c94610f2 |
files | src/Makefile.in |
diffstat | 1 files changed, 10 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/Makefile.in Thu May 19 23:36:01 1994 +0000 +++ b/src/Makefile.in Thu May 19 23:41:44 1994 +0000 @@ -80,6 +80,14 @@ CC = C_COMPILER #endif +/* GNU libc requires ORDINARY_LINK so that its own crt0 is used. + Linux is an exception because it uses a funny variant of GNU libc. */ +#ifdef __GNU_LIBRARY__ +#ifndef LINUX +#define ORDINARY_LINK +#endif +#endif + /* Some machines don't find the standard C libraries in the usual place. */ #ifndef ORDINARY_LINK #ifndef LIB_STANDARD @@ -499,7 +507,8 @@ #endif #ifdef MULTI_FRAME -#define FRAME_SUPPORT ${lispdir}frame.elc ${lispdir}mouse.elc ${lispdir}select.elc ${lispdir}scroll-bar.elc +#define FRAME_SUPPORT ${lispdir}frame.elc ${lispdir}menu-bar.elc \ + ${lispdir}mouse.elc ${lispdir}select.elc ${lispdir}scroll-bar.elc #else #define FRAME_SUPPORT #endif