mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-01 13:47:59 +02:00
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
9 lines
109 B
C
9 lines
109 B
C
#include <bfd.h>
|
|
|
|
int
|
|
f (asection *s)
|
|
{
|
|
return bfd_section_flags(s) == 0;
|
|
}
|
|
|
|
int main (void) { return 0; }
|