forked from pool/ipmitool
Thomas Renninger
e7e8d0d141
* Add: 0001-fix-typo.patch 0002-added-microTCA-major-version.patch 0003-replaced-removed-defines-which-are-already-present-i.patch 0004-fix-typo.patch 0005-fix-typo.patch 0006-ID-461-OpenSSL-1.1-compatibility-error-storage-size-.patch 0007-ID-461-Make-compiler-happier-about-changes-related-t.patch 0008-ID-474-Compile-fix-on-nonlinux-systems.patch 0009-Add-bootstrap-support-for-Mac.patch 0010-Prevent-autoreconf-from-complaining-about-missing-NE.patch 0011-Add-git-hash-and-dirty-mark-to-ipmitool-version.patch 0012-Add-some-more-configure-build-editor-byproducts-to-..patch 0013-ID-478-ekanalyzer-Fixed-decoding-of-FRU-fields.patch 0014-ID-479-ekanalyzer-fix-processing-of-custom-mfg.-fiel.patch 0015-ID-477-fru-Fix-decoding-of-non-text-data-in-get_fru_.patch 0016-Make-git-revision-more-descriptive.patch 0017-ID-480-ipmitool-coredumps-in-EVP_CIPHER_CTX_init.patch OBS-URL: https://build.opensuse.org/package/show/systemsmanagement/ipmitool?expand=0&rev=40
31 lines
720 B
Diff
31 lines
720 B
Diff
From 5db314f694f75c575cd7c9ffe9ee57aaf3a88866 Mon Sep 17 00:00:00 2001
|
|
From: Leonid Nevecherya <nevecherya@gmail.com>
|
|
Date: Tue, 17 Jan 2017 11:00:37 +0300
|
|
Subject: [PATCH 08/17] ID:474 - Compile fix on nonlinux systems
|
|
|
|
This patch fixes compilation on systems without a separate <malloc.h>.
|
|
---
|
|
lib/ipmi_cfgp.c | 6 +++++-
|
|
1 file changed, 5 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/lib/ipmi_cfgp.c b/lib/ipmi_cfgp.c
|
|
index b8af80d..dfc4743 100644
|
|
--- a/lib/ipmi_cfgp.c
|
|
+++ b/lib/ipmi_cfgp.c
|
|
@@ -30,7 +30,11 @@
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
-#include <malloc.h>
|
|
+#ifdef HAVE_MALLOC_H
|
|
+# include <malloc.h>
|
|
+#else
|
|
+# include <stdlib.h>
|
|
+#endif
|
|
#include <string.h>
|
|
|
|
#include <ipmitool/helper.h>
|
|
--
|
|
1.8.5.6
|
|
|