Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH/next 1/1] package/kodi-pvr-stalker: fix gcc7 compile
@ 2017-05-13 18:29 Bernd Kuhls
  2017-05-14 13:38 ` Bernd Kuhls
  2017-06-08 21:36 ` Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Bernd Kuhls @ 2017-05-13 18:29 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 .../0001-src-CWatchdog.h-Fix-gcc7-build.patch      | 33 ++++++++++++++++++++++
 1 file changed, 33 insertions(+)
 create mode 100644 package/kodi-pvr-stalker/0001-src-CWatchdog.h-Fix-gcc7-build.patch

diff --git a/package/kodi-pvr-stalker/0001-src-CWatchdog.h-Fix-gcc7-build.patch b/package/kodi-pvr-stalker/0001-src-CWatchdog.h-Fix-gcc7-build.patch
new file mode 100644
index 0000000000..54d18a996c
--- /dev/null
+++ b/package/kodi-pvr-stalker/0001-src-CWatchdog.h-Fix-gcc7-build.patch
@@ -0,0 +1,33 @@
+From bb16ccd14deb3a01049daec37b6d2e7711ef4738 Mon Sep 17 00:00:00 2001
+From: Bernd Kuhls <bernd.kuhls@t-online.de>
+Date: Sat, 13 May 2017 20:22:08 +0200
+Subject: [PATCH 1/1] src/CWatchdog.h: Fix gcc7 build
+
+Building with gcc7 is broken:
+
+src/CWatchdog.h:31:58: error: 'std::function' has not been declared
+    CWatchdog(unsigned int interval, SAPI *api, std::function<void(SError)> errorCallback);
+                                                     ^~~~~~~~
+
+Patch sent upstream as PR 93.
+
+Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
+---
+ src/CWatchdog.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/CWatchdog.h b/src/CWatchdog.h
+index c465e91..239d95d 100644
+--- a/src/CWatchdog.h
++++ b/src/CWatchdog.h
+@@ -22,6 +22,7 @@
+  */
+ 
+ #include <thread>
++#include <functional>
+ 
+ #include "SAPI.h"
+ 
+-- 
+2.11.0
+
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH/next 1/1] package/kodi-pvr-stalker: fix gcc7 compile
  2017-05-13 18:29 [Buildroot] [PATCH/next 1/1] package/kodi-pvr-stalker: fix gcc7 compile Bernd Kuhls
@ 2017-05-14 13:38 ` Bernd Kuhls
  2017-06-08 21:36 ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Bernd Kuhls @ 2017-05-14 13:38 UTC (permalink / raw)
  To: buildroot

Hi,

Am Sat, 13 May 2017 20:29:44 +0200 schrieb Bernd Kuhls:

> +  */
> +
> + #include <thread>
> ++#include <functional>
> +
> + #include "SAPI.h"
> +

please note that all lines of the patch need DOS line endings.

Regards, Bernd

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH/next 1/1] package/kodi-pvr-stalker: fix gcc7 compile
  2017-05-13 18:29 [Buildroot] [PATCH/next 1/1] package/kodi-pvr-stalker: fix gcc7 compile Bernd Kuhls
  2017-05-14 13:38 ` Bernd Kuhls
@ 2017-06-08 21:36 ` Thomas Petazzoni
  2017-06-09  4:07   ` Bernd Kuhls
  1 sibling, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2017-06-08 21:36 UTC (permalink / raw)
  To: buildroot

Hello,

On Sat, 13 May 2017 20:29:44 +0200, Bernd Kuhls wrote:

> diff --git a/package/kodi-pvr-stalker/0001-src-CWatchdog.h-Fix-gcc7-build.patch b/package/kodi-pvr-stalker/0001-src-CWatchdog.h-Fix-gcc7-build.patch
> new file mode 100644
> index 0000000000..54d18a996c
> --- /dev/null
> +++ b/package/kodi-pvr-stalker/0001-src-CWatchdog.h-Fix-gcc7-build.patch
> @@ -0,0 +1,33 @@
> +From bb16ccd14deb3a01049daec37b6d2e7711ef4738 Mon Sep 17 00:00:00 2001
> +From: Bernd Kuhls <bernd.kuhls@t-online.de>
> +Date: Sat, 13 May 2017 20:22:08 +0200
> +Subject: [PATCH 1/1] src/CWatchdog.h: Fix gcc7 build

Please use [PATCH] instead of [PATCH 1/1], i.e use git format-patch -N.

> +Building with gcc7 is broken:
> +
> +src/CWatchdog.h:31:58: error: 'std::function' has not been declared
> +    CWatchdog(unsigned int interval, SAPI *api, std::function<void(SError)> errorCallback);
> +                                                     ^~~~~~~~
> +
> +Patch sent upstream as PR 93.

A link is better than "PR 93".

I've fixed both, and applied, after also adjusting DOS line endings as
you mentioned (I tested that the patch applies properly).

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH/next 1/1] package/kodi-pvr-stalker: fix gcc7 compile
  2017-06-08 21:36 ` Thomas Petazzoni
@ 2017-06-09  4:07   ` Bernd Kuhls
  0 siblings, 0 replies; 4+ messages in thread
From: Bernd Kuhls @ 2017-06-09  4:07 UTC (permalink / raw)
  To: buildroot

Hi Thomas,

Am Thu, 08 Jun 2017 23:36:48 +0200 schrieb Thomas Petazzoni:

> Please use [PATCH] instead of [PATCH 1/1], i.e use git format-patch -N.

ok.

>> +Patch sent upstream as PR 93.
> 
> A link is better than "PR 93".

I was told not to do include links to pull requests because it spams the 
linked pull requests:
https://github.com/xbmc/xbmc/pull/9731#issuecomment-236360427

The same happens when adding "PR xxx" into the subject:
https://github.com/xbmc/xbmc/pull/8953#issuecomment-232179102

This happened because I am uploading my patches also to my personal 
github repo.

Regards, Bernd

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-06-09  4:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-13 18:29 [Buildroot] [PATCH/next 1/1] package/kodi-pvr-stalker: fix gcc7 compile Bernd Kuhls
2017-05-14 13:38 ` Bernd Kuhls
2017-06-08 21:36 ` Thomas Petazzoni
2017-06-09  4:07   ` Bernd Kuhls

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox