On Fri, 2013-04-26 at 17:03 +0200, Jan Kratochvil wrote: > libdwfl/ > * link_map.c (BE32, BE64, LE32, LE64): Delete the definitions, move > them to lib/system.h.
But then you do have to include system.h to pick up those definitions or the file won't compile anymore. Fixed as follows: commit 9efa9e6803992567576963f381fbd9cd6a7b9b86 Author: Mark Wielaard <[email protected]> Date: Sat Apr 27 20:50:32 2013 +0200 libdwfl/link_map.c: #include system.h. Signed-off-by: Mark Wielaard <[email protected]> diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog index 0160534..42f720c 100644 --- a/libdwfl/ChangeLog +++ b/libdwfl/ChangeLog @@ -1,3 +1,7 @@ +2013-04-27 Mark Wielaard <[email protected]> + + * link_map.c: #include system.h. + 2013-04-26 Jan Kratochvil <[email protected]> * link_map.c (BE32, BE64, LE32, LE64): Delete the definitions, move diff --git a/libdwfl/link_map.c b/libdwfl/link_map.c index 19f92df..c6ec29c 100644 --- a/libdwfl/link_map.c +++ b/libdwfl/link_map.c @@ -29,6 +29,7 @@ #include <config.h> #include "libdwflP.h" #include "../libdw/memory-access.h" +#include "system.h" #include <byteswap.h> #include <endian.h> _______________________________________________ elfutils-devel mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/elfutils-devel
