aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--lib/ephy-debug.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 739029b5e..dffea2c11 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2005-08-29 Christian Persch <chpe@cvs.gnome.org>
+ * lib/ephy-debug.c:
+
+ Only include execinfo.h if it exists.
+
+2005-08-29 Christian Persch <chpe@cvs.gnome.org>
+
* configure.ac:
* lib/ephy-debug.c: (trap_handler):
diff --git a/lib/ephy-debug.c b/lib/ephy-debug.c
index a8c35902d..9ecb8175f 100644
--- a/lib/ephy-debug.c
+++ b/lib/ephy-debug.c
@@ -23,7 +23,9 @@
#include "ephy-debug.h"
#include <string.h>
+#ifdef HAVE_EXECINFO_H
#include <execinfo.h>
+#endif
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>