diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2017-06-01 22:28:14 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-06-01 22:28:14 +0200 |
commit | 11271540bfe6adafbc133caf6b5b902a816f5f02 (patch) | |
tree | 48df469d4e88c7e6efc0a8f4f8d5a386468ed72b /package/powertop/0003-add-missing-sys-time.h-header.patch | |
parent | 24d6c5258ee38c38f0156b057cecd3cfe7ed7b1d (diff) | |
parent | 8e5eef6c323c6a928ccea7279b3d9848419b99d9 (diff) | |
download | buildroot-11271540bfe6adafbc133caf6b5b902a816f5f02.tar.gz buildroot-11271540bfe6adafbc133caf6b5b902a816f5f02.zip |
Merge branch 'next'
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/powertop/0003-add-missing-sys-time.h-header.patch')
-rw-r--r-- | package/powertop/0003-add-missing-sys-time.h-header.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/package/powertop/0003-add-missing-sys-time.h-header.patch b/package/powertop/0003-add-missing-sys-time.h-header.patch deleted file mode 100644 index 7156e4256a..0000000000 --- a/package/powertop/0003-add-missing-sys-time.h-header.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 283cab667a9ac3ae3a675b5e5d1a42191188699f Mon Sep 17 00:00:00 2001 -From: Romain Naour <romain.naour@openwide.fr> -Date: Sat, 8 Aug 2015 18:24:48 +0200 -Subject: [PATCH] add missing sys/time.h header -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -struct timeval is defined in sys/time.h with a musl toolchain. - -Fixes: -In file included from devices/devfreq.cpp:35:0: -devices/devfreq.h:35:18: error: field ‘stamp_before’ has incomplete type ‘timeval’ - struct timeval stamp_before, stamp_after; - -Signed-off-by: Romain Naour <romain.naour@openwide.fr> ---- - src/devices/devfreq.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/devices/devfreq.h b/src/devices/devfreq.h -index 16a60fb..4a8983b 100644 ---- a/src/devices/devfreq.h -+++ b/src/devices/devfreq.h -@@ -27,6 +27,7 @@ - - #include "device.h" - #include "../parameters/parameters.h" -+#include <sys/time.h> - - struct frequency; - --- -2.4.3 - |