Commit b39f83c8 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

Work around the fact that autosh..tools does only check for header presence, not usability.

parent 498c3f39
......@@ -1482,7 +1482,7 @@ static void ListChildren( vlc_list_t *p_list, vlc_object_t *p_this, int i_type )
}
#ifndef NDEBUG
# ifdef HAVE_EXECINFO_H
# if defined(HAVE_EXECINFO_H) && defined(HAVE_BACKTRACE)
# include <execinfo.h>
# endif
......
......@@ -83,7 +83,7 @@ static inline unsigned long vlc_threadid (void)
return v.i;
}
#if HAVE_EXECINFO_H
#if defined(HAVE_EXECINFO_H) && defined(HAVE_BACKTRACE)
# include <execinfo.h>
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment