diff options
author | Jörg Krause <joerg.krause@embedded.rocks> | 2016-12-14 09:47:57 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-12-14 10:12:25 +0100 |
commit | 91b8d74c023157b1755f9fa208df3463744c9751 (patch) | |
tree | ab3a229c5f355325ccb49e143e07f068414a7808 /package/ipmitool/0003-Add-missing-linux-param.h-header-include.patch | |
parent | 1df0a05b89ccccee8ba08640426d2bea2c188e65 (diff) | |
download | buildroot-91b8d74c023157b1755f9fa208df3463744c9751.tar.gz buildroot-91b8d74c023157b1755f9fa208df3463744c9751.zip |
package/ipmitool: bump version to 1.8.18
Some patches are not necessary anymore as upstream fixed the issues.
As we are not patching configure.ac anymore, there is no need to
autoreconf the package.
Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/ipmitool/0003-Add-missing-linux-param.h-header-include.patch')
-rw-r--r-- | package/ipmitool/0003-Add-missing-linux-param.h-header-include.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/package/ipmitool/0003-Add-missing-linux-param.h-header-include.patch b/package/ipmitool/0003-Add-missing-linux-param.h-header-include.patch deleted file mode 100644 index a3bd7257fb..0000000000 --- a/package/ipmitool/0003-Add-missing-linux-param.h-header-include.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 661095378b74df564bc621ced4db72b688d87399 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?J=C3=B6rg=20Krause?= <joerg.krause@embedded.rocks> -Date: Sat, 2 Apr 2016 19:47:21 +0200 -Subject: [PATCH 3/3] Add missing linux/param.h header include -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Fixes the following build failure under musl: - -imbapi.c: In function 'MapPhysicalMemory': -imbapi.c:109:19: error: 'EXEC_PAGESIZE' undeclared (first use in this function) - # define PAGESIZE EXEC_PAGESIZE - -Upstream status: Pending -https://sourceforge.net/p/ipmitool/mailman/message/35007330/ - -Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> ---- - src/plugins/imb/imbapi.c | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/src/plugins/imb/imbapi.c b/src/plugins/imb/imbapi.c -index 899c47a..8a6421d 100644 ---- a/src/plugins/imb/imbapi.c -+++ b/src/plugins/imb/imbapi.c -@@ -95,6 +95,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - #include <stdlib.h> - #include <fcntl.h> - #include <string.h> -+#ifdef __linux__ -+#include <linux/param.h> -+#endif - #endif - #include "imbapi.h" - #include <asm/socket.h> --- -2.8.0 - |