From: Richard M. Stallman Date: Thu, 19 May 1994 23:41:44 +0000 (+0000) Subject: (FRAME_SUPPORT): Add menu-bar.el. X-Git-Tag: emacs-19.34~8273 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5520f84fc62f8fb7ea0a9ee998c3f092342832ee;p=emacs.git (FRAME_SUPPORT): Add menu-bar.el. (ORDINARY_LINK): Define by default if __GNU_LIBRARY__ and not LINUX. --- 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 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 @@ otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj) #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