diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-08-30 04:37:31 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-08-30 04:37:31 +0800 |
commit | 606d7f1ba115eeb1a9681076cdb33f9d3a4cf877 (patch) | |
tree | 753f1072fc159d2aa18dbbd771cda8e279f3ded6 /lib | |
parent | 16d8cf513a954ab3bfe469d1cf94340e25ebfc98 (diff) | |
download | gsoc2013-epiphany-606d7f1ba115eeb1a9681076cdb33f9d3a4cf877.tar gsoc2013-epiphany-606d7f1ba115eeb1a9681076cdb33f9d3a4cf877.tar.gz gsoc2013-epiphany-606d7f1ba115eeb1a9681076cdb33f9d3a4cf877.tar.bz2 gsoc2013-epiphany-606d7f1ba115eeb1a9681076cdb33f9d3a4cf877.tar.lz gsoc2013-epiphany-606d7f1ba115eeb1a9681076cdb33f9d3a4cf877.tar.xz gsoc2013-epiphany-606d7f1ba115eeb1a9681076cdb33f9d3a4cf877.tar.zst gsoc2013-epiphany-606d7f1ba115eeb1a9681076cdb33f9d3a4cf877.zip |
Only include execinfo.h if it exists.
2005-08-29 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-debug.c:
Only include execinfo.h if it exists.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ephy-debug.c | 2 |
1 files changed, 2 insertions, 0 deletions
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> |