diff options
Diffstat (limited to 'lib/ephy-debug.c')
-rw-r--r-- | lib/ephy-debug.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/ephy-debug.c b/lib/ephy-debug.c index d999e7b3a..a8c35902d 100644 --- a/lib/ephy-debug.c +++ b/lib/ephy-debug.c @@ -109,11 +109,15 @@ trap_handler (const char *log_domain, } else if (strcmp (ephy_debug_break, "stack") == 0) { +#ifdef HAVE_EXECINFO_H void *array[MAX_DEPTH]; size_t size; size = backtrace (array, MAX_DEPTH); backtrace_symbols_fd (array, size, 2); +#else + g_on_error_stack_trace (g_get_prgname ()); +#endif /* HAVE_EXECINFO_H */ } else if (strcmp (ephy_debug_break, "trap") == 0) { |