ports/devel/fnccheck/files/patch-src_fcdump_fc__dump.c
Adriaan de Groot 6884228867 devel/fnccheck: fix build against updated libbfd
- use the libiberty demangling header instead of a bundled
  copy from 2012 that no longer compiles because of changes
  in ansidecl.h
- if anyone knows what a CCI/Harris Tahoe was, speak up
- demangle using GNU_V3 instead.
2021-05-11 20:47:31 +02:00

11 lines
425 B
C

--- src/fcdump/fc_dump.c.orig 2021-05-10 22:05:35 UTC
+++ src/fcdump/fc_dump.c
@@ -597,7 +597,7 @@ int main(int argc, char *argv[])
if (strcmp(argv[i], "-demangle-gnu") == 0)
{/* demangle names */
demangle = 1;
- style = DMGL_GNU;
+ style = DMGL_GNU_V3;
}
else
if (strcmp(argv[i], "-demangle-java") == 0)