emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r109918: Fix compilation failure unde


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109918: Fix compilation failure under ENABLE_CHECKING.
Date: Fri, 07 Sep 2012 10:24:08 +0300
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109918
fixes bug: http://debbugs.gnu.org/12327
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Fri 2012-09-07 10:24:08 +0300
message:
  Fix compilation failure under ENABLE_CHECKING.
  
   src/alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
modified:
  src/ChangeLog
  src/alloc.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-09-07 07:05:56 +0000
+++ b/src/ChangeLog     2012-09-07 07:24:08 +0000
@@ -1,3 +1,7 @@
+2012-09-07  Eli Zaretskii  <address@hidden>
+
+       * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
+
 2012-09-07  Dmitry Antipov  <address@hidden>
 
        * alloc.c (mark_buffer): Revert unsafe marking optimization.

=== modified file 'src/alloc.c'
--- a/src/alloc.c       2012-09-07 07:05:56 +0000
+++ b/src/alloc.c       2012-09-07 07:24:08 +0000
@@ -26,6 +26,10 @@
 #include <limits.h>            /* For CHAR_BIT.  */
 #include <setjmp.h>
 
+#ifdef ENABLE_CHECKING
+#include <signal.h>            /* For SIGABRT. */
+#endif
+
 #ifdef HAVE_PTHREAD
 #include <pthread.h>
 #endif


reply via email to

[Prev in Thread] Current Thread [Next in Thread]