Files
asterisk/main
Jaco Kroon 345e072a6d Update main/backtrace.c to deal with changes in binutils 2.34.
binutils 2.34 merged this commit:

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=commitdiff;\
	h=fd3619828e94a24a92cddec42cbc0ab33352eeb4

Which effectively does things like:

-#define bfd_section_size(bfd, ptr) ((ptr)->size)
-#define bfd_get_section_size(ptr) ((ptr)->size)

+#define bfd_section_size(sec) ((sec)->size)

So in order to remain backwards compatible we need to detect this API
change, and adjust accordingly.  The simplest is to notice that the
bfd_get_section_size and bfd_get_section_vma MACROs are no longer
defined, and define then onto the new API.  The alternative is to litter
the code with a number of #ifdef #else #endif splatters right through
the code.

Change-Id: I3efe0f8e8f3e338d16fcbc2b26a505367b6e172f
2020-03-17 09:13:53 -05:00
..
2019-08-01 16:22:01 -05:00
2019-08-01 16:22:01 -05:00
2017-10-24 17:17:53 -04:00
2017-12-20 12:54:13 -05:00
2019-12-17 14:11:52 +00:00
2016-11-01 12:37:58 -05:00
2015-01-26 14:49:32 +00:00
2018-06-23 00:27:06 -06:00
2018-07-20 05:20:25 -06:00