# HG changeset patch # User Richard M. Stallman # Date 769390904 0 # Node ID 68044af924e8d4e8b591fb7ef5780381031f7b8a # Parent 782afa5d95cb22a718b2b0159bf211fcaf44ee9e (FRAME_SUPPORT): Add menu-bar.el. (ORDINARY_LINK): Define by default if __GNU_LIBRARY__ and not LINUX. diff -r 782afa5d95cb -r 68044af924e8 src/Makefile.in --- 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