Bug 553857 – gbacktrace.h requires signal.h
authorMatthias Clasen <mclasen@redhat.com>
Fri, 26 Sep 2008 14:33:48 +0000 (14:33 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 26 Sep 2008 14:33:48 +0000 (14:33 +0000)
2008-09-26  Matthias Clasen  <mclasen@redhat.com>

        Bug 553857 – gbacktrace.h requires signal.h

        * glib/gbacktrace.h: Include signal.h for raise().
        Pointed out by Sebastien Bacher

svn path=/trunk/; revision=7548

ChangeLog
glib/gbacktrace.h

index 7069c18..62a5cad 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
 
+       Bug 553857 – gbacktrace.h requires signal.h
+
+       * glib/gbacktrace.h: Include signal.h for raise(). 
+       Pointed out by Sebastien Bacher
+
+2008-09-26  Matthias Clasen  <mclasen@redhat.com>
+
        Bug 553724 – python interpretter path not patched in correctly
 
        * glib/Makefile.am: Fix the sed magic to replace python.
index 274cdac..2e74b49 100644 (file)
@@ -32,6 +32,7 @@
 #define __G_BACKTRACE_H__
 
 #include <glib/gtypes.h>
+#include <signal.h>
 
 G_BEGIN_DECLS