mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
98834458f1
Signed-off-by: Alexey Neyman <stilor@att.net>
59 lines
1.4 KiB
Diff
59 lines
1.4 KiB
Diff
---
|
|
mingw-w64-tools/genidl/src/genidl_cfg.h | 2 ++
|
|
mingw-w64-tools/genidl/src/genidl_typinfo.c | 3 +++
|
|
mingw-w64-tools/widl/include/pathtools.h | 3 +--
|
|
mingw-w64-tools/widl/src/pathtools.c | 3 +--
|
|
4 files changed, 7 insertions(+), 4 deletions(-)
|
|
|
|
--- a/mingw-w64-tools/genidl/src/genidl_cfg.h
|
|
+++ b/mingw-w64-tools/genidl/src/genidl_cfg.h
|
|
@@ -26,7 +26,9 @@
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
+#if defined(HAVE_MALLOC_H)
|
|
#include <malloc.h>
|
|
+#endif
|
|
#include <memory.h>
|
|
#include <stdarg.h>
|
|
#include <stdint.h>
|
|
--- a/mingw-w64-tools/genidl/src/genidl_typinfo.c
|
|
+++ b/mingw-w64-tools/genidl/src/genidl_typinfo.c
|
|
@@ -21,7 +21,10 @@
|
|
#include "genidl_cfg.h"
|
|
#include "genidl_typeinfo.h"
|
|
#include "genidl_typinfo.h"
|
|
+#if defined(HAVE_MALLOC_H)
|
|
#include <malloc.h>
|
|
+#endif
|
|
+#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <memory.h>
|
|
|
|
--- a/mingw-w64-tools/widl/include/pathtools.h
|
|
+++ b/mingw-w64-tools/widl/include/pathtools.h
|
|
@@ -12,9 +12,8 @@
|
|
#define PATHTOOLS_H
|
|
|
|
#include <unistd.h>
|
|
-#if defined(__APPLE__)
|
|
#include <stdlib.h>
|
|
-#else
|
|
+#if defined(HAVE_MALLOC_H)
|
|
#include <malloc.h>
|
|
#endif
|
|
#include <stdio.h>
|
|
--- a/mingw-w64-tools/widl/src/pathtools.c
|
|
+++ b/mingw-w64-tools/widl/src/pathtools.c
|
|
@@ -8,9 +8,8 @@
|
|
.email: <mingw.android@gmail.com>.
|
|
*/
|
|
|
|
-#if defined(__APPLE__)
|
|
#include <stdlib.h>
|
|
-#else
|
|
+#if defined(HAVE_MALLOC_H)
|
|
#include <malloc.h>
|
|
#endif
|
|
#include <limits.h>
|