imagemagick: bump version to 7.0.3-7 (security)
[buildroot-gz.git] / package / ipmitool / 0004-Fix-missing-stddef.h-include.patch
blobe58c8b09ea73f1e529e019d2827d19e25a5641db
1 From 2b149f7723fbd6153e6605ea8efb2c9f2940c8e5 Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?J=C3=B6rg=20Krause?= <joerg.krause@embedded.rocks>
3 Date: Mon, 18 Apr 2016 21:17:26 +0200
4 Subject: [PATCH] Fix missing stddef.h include
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
9 Needed for wchar_t. Fixes build error:
11 imbapi.h:140:9: error: unknown type name 'wchar_t'
12 typedef wchar_t WCHAR;
14 Upstream status: Pending
15 https://sourceforge.net/p/ipmitool/mailman/message/35022779/
17 Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
18 ---
19 src/plugins/imb/imbapi.h | 2 ++
20 1 file changed, 2 insertions(+)
22 diff --git a/src/plugins/imb/imbapi.h b/src/plugins/imb/imbapi.h
23 index ead8956..8d0c7ae 100644
24 --- a/src/plugins/imb/imbapi.h
25 +++ b/src/plugins/imb/imbapi.h
26 @@ -40,6 +40,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 # include <config.h>
28 #endif
30 +#include <stddef.h>
32 #ifndef FALSE
33 #define FALSE 0
34 #endif
35 --
36 2.8.0