python-whoosh: bump to version 2.7.4
[buildroot-gz.git] / package / ipmitool / 0001-Fix-missing-stddef.h-include.patch
blobdc3f92e48275e195bbe3d720c265000d38faedd2
1 From 04d489936191e685123978a1ca370f9cc30e6a06 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 | 3 +++
20 1 file changed, 3 insertions(+)
22 diff --git a/src/plugins/imb/imbapi.h b/src/plugins/imb/imbapi.h
23 index 6ba4121..6b39b47 100644
24 --- a/src/plugins/imb/imbapi.h
25 +++ b/src/plugins/imb/imbapi.h
26 @@ -33,6 +33,9 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *----------------------------------------------------------------------*/
31 +#include <stddef.h>
33 #ifndef _WINDEFS_H
34 #define _WINDEFS_H
35 #ifndef FALSE
36 --
37 2.10.2