]> git.eshelyaron.com Git - emacs.git/commitdiff
(FRAME_SUPPORT): Add menu-bar.el.
authorRichard M. Stallman <rms@gnu.org>
Thu, 19 May 1994 23:41:44 +0000 (23:41 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 19 May 1994 23:41:44 +0000 (23:41 +0000)
(ORDINARY_LINK): Define by default
if __GNU_LIBRARY__ and not LINUX.

src/Makefile.in

index 59e4ec98ad49c49501ad585507b77d443d938825..459a4b38ae5f40f878c2328620093f377ba96e75 100644 (file)
@@ -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