cairo/meson-cc-tests/bfd-section-flags.c
Tim-Philipp Müller e30259f623 cairo-trace: fix build with newer versions of bfd
And update configure/meson checks to check for the new function.

Drop libiberty.h check since it's only needed by backtrace-symbols.c
which we're about to remove.

Closes #391, #460
2021-02-23 12:29:58 +00:00

9 lines
109 B
C

#include <bfd.h>
int
f (asection *s)
{
return bfd_section_flags(s) == 0;
}
int main (void) { return 0; }