blob: 4ee9bd9a18c6d6e398923b8cdfff0883e5ec4fb7 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From e596ae99059c28fa9bb3461e03e7ecaacbf41727 Mon Sep 17 00:00:00 2001
2From: Andrea Adami <andrea.adami@gmail.com>
3Date: Wed, 23 May 2018 15:34:59 +0200
4Subject: [PATCH] libmissing.h: fix klibc build when using glibc toolchain
5
6klibc lacks execinfo.h so adda guard around it.
7Note: build with musl toolchain is ok even without this patch.
8
9Fix build error:
10
11| In file included from ../git/lib/execinfo.c:1:0:
12| ../git/include/libmissing.h:7:10: fatal error: execinfo.h:
13 No such file or directory
14
15Upstream-Status: Inappropriate [klibc specific]
16
17Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
18---
19 include/libmissing.h | 2 ++
20 1 file changed, 2 insertions(+)
21
22diff --git a/include/libmissing.h b/include/libmissing.h
23index 0196033..832c372 100644
24--- a/include/libmissing.h
25+++ b/include/libmissing.h
26@@ -3,9 +3,11 @@
27
28 #include "config.h"
29
30+#ifndef __KLIBC__
31 #ifdef HAVE_EXECINFO_H
32 #include <execinfo.h>
33 #endif
34+#endif
35
36 #ifndef HAVE_EXECINFO_H
37 int backtrace(void **buffer, int size);
38--
392.7.4
40