From a042465c218eaed098d505e0a2e78508b554fc67 Mon Sep 17 00:00:00 2001 From: Jonathan Gray Date: Sat, 18 Feb 2017 18:56:58 +1100 Subject: [PATCH] util/build-id: define ElfW and NT_GNU_BUILD_ID if needed Define ElfW() and NT_GNU_BUILD_ID if needed as these defines are not present on at least OpenBSD and FreeBSD. Fixes the build on OpenBSD. Fixes: d4fa083e11f ("util: Add utility build-id code.") Signed-off-by: Jonathan Gray Reviewed-by: Emil Velikov --- src/util/build_id.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/util/build_id.c b/src/util/build_id.c index 2993a80..cc0f852 100644 --- a/src/util/build_id.c +++ b/src/util/build_id.c @@ -28,6 +28,14 @@ #include "build_id.h" +#ifndef NT_GNU_BUILD_ID +#define NT_GNU_BUILD_ID 3 +#endif + +#ifndef ElfW +#define ElfW(type) Elf_##type +#endif + #define ALIGN(val, align) (((val) + (align) - 1) & ~((align) - 1)) struct build_id_note { -- 2.7.4