diff options
author | Baruch Siach <baruch@tkos.co.il> | 2015-10-27 14:57:16 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-10-27 22:09:39 +0100 |
commit | 9972408a94fa8447786de5d15a11f2649b43a882 (patch) | |
tree | 02d6f135714af27a8bf769076ed69cff24db22a0 /package/ipmiutil/0006-add-missing-sys-select.h-include.patch | |
parent | 1c8e10e0ca7833cee05231a5d629feab0be1245a (diff) | |
download | buildroot-9972408a94fa8447786de5d15a11f2649b43a882.tar.gz buildroot-9972408a94fa8447786de5d15a11f2649b43a882.zip |
ipmiutil: bump to version 2.9.7
Remove upstream or unneeded patches. Renumber and refresh the doc disable
patch. Add a different version of the lanplus disable fix (sent upstream) that
integrates with upstream change in this area.
Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/ipmiutil/0006-add-missing-sys-select.h-include.patch')
-rw-r--r-- | package/ipmiutil/0006-add-missing-sys-select.h-include.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/package/ipmiutil/0006-add-missing-sys-select.h-include.patch b/package/ipmiutil/0006-add-missing-sys-select.h-include.patch deleted file mode 100644 index a0cba20675..0000000000 --- a/package/ipmiutil/0006-add-missing-sys-select.h-include.patch +++ /dev/null @@ -1,26 +0,0 @@ -Add missing sys/select.h include - -POSIX.1-2001 requires sys/select.h for select(). Fixes the following build -failure under musl: - -ipmimv.c: In function ‘ipmicmd_mv’: -ipmimv.c:345:5: error: unknown type name ‘fd_set’ - fd_set readfds; - ^ -ipmimv.c:346:20: error: storage size of ‘tv’ isn’t known - struct timeval tv; - ^ - -Signed-off-by: Baruch Siach <baruch@tkos.co.il> - -diff -Nuar ipmiutil-2.9.5-orig/util/ipmimv.c ipmiutil-2.9.5/util/ipmimv.c ---- ipmiutil-2.9.5-orig/util/ipmimv.c 2014-11-04 19:46:11.000000000 +0200 -+++ ipmiutil-2.9.5/util/ipmimv.c 2015-09-29 09:16:08.862828679 +0300 -@@ -62,6 +62,7 @@ - #include <time.h> - #include <errno.h> - #include <sys/ioctl.h> -+#include <sys/select.h> - #if defined(MACOS) - #include <sys/time.h> - #else |