unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* emacs.c broken by revision 1.435
@ 2008-07-23  7:24 Tim Van Holder
  2008-07-23  7:37 ` Miles Bader
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Tim Van Holder @ 2008-07-23  7:24 UTC (permalink / raw)
  To: emacs-devel

The "LINUX_SBRK_BUG" condition was incorrectly replaced with

#if (GNU_LINUX) && __GNU_LIBRARY__ - 0 < 6
  __sbrk (1);
#endif

instead of

#if defined (GNU_LINUX) && __GNU_LIBRARY__ - 0 < 6
  __sbrk (1);
#endif

resulting in a broken build.

I'm also not quite certain why a condition that was only present in an
Alpha header is now being used for all platforms. But I suppose the
__sbrk call is sufficiently harmless?




^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2008-07-23 20:51 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-23  7:24 emacs.c broken by revision 1.435 Tim Van Holder
2008-07-23  7:37 ` Miles Bader
2008-07-23  7:50   ` Yavor Doganov
2008-07-23  8:48 ` David Kastrup
2008-07-23  8:59   ` Miles Bader
2008-07-23  9:01   ` Juanma Barranquero
2008-07-23  9:21     ` David Kastrup
2008-07-23 10:49       ` Juanma Barranquero
2008-07-23 10:04   ` Jason Rumney
2008-07-23 19:57 ` Stefan Monnier
2008-07-23 20:51   ` Dan Nicolaescu

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).