All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/ympd: renumber patch
@ 2020-09-09 18:26 Fabrice Fontaine
  2020-09-09 18:26 ` [Buildroot] [PATCH 2/2] package/ympd: fix build with gcc 10 Fabrice Fontaine
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Fabrice Fontaine @ 2020-09-09 18:26 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 .../{0002-only-c-language.patch => 0001-only-c-language.patch}    | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename package/ympd/{0002-only-c-language.patch => 0001-only-c-language.patch} (100%)

diff --git a/package/ympd/0002-only-c-language.patch b/package/ympd/0001-only-c-language.patch
similarity index 100%
rename from package/ympd/0002-only-c-language.patch
rename to package/ympd/0001-only-c-language.patch
-- 
2.28.0

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

* [Buildroot] [PATCH 2/2] package/ympd: fix build with gcc 10
  2020-09-09 18:26 [Buildroot] [PATCH 1/2] package/ympd: renumber patch Fabrice Fontaine
@ 2020-09-09 18:26 ` Fabrice Fontaine
  2020-09-29 15:21   ` Peter Korsgaard
  2020-09-19 21:23 ` [Buildroot] [PATCH 1/2] package/ympd: renumber patch Thomas Petazzoni
  2020-09-29 15:21 ` Peter Korsgaard
  2 siblings, 1 reply; 5+ messages in thread
From: Fabrice Fontaine @ 2020-09-09 18:26 UTC (permalink / raw)
  To: buildroot

Fixes:
 - http://autobuild.buildroot.org/results/ea4b96ba8d4a398515ed349e8304a656b684f718

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 .../0002-added-forward-declarations.patch     | 43 +++++++++++++++++++
 1 file changed, 43 insertions(+)
 create mode 100644 package/ympd/0002-added-forward-declarations.patch

diff --git a/package/ympd/0002-added-forward-declarations.patch b/package/ympd/0002-added-forward-declarations.patch
new file mode 100644
index 0000000000..90ee1eae68
--- /dev/null
+++ b/package/ympd/0002-added-forward-declarations.patch
@@ -0,0 +1,43 @@
+From 2268e0f0f372a61827b912155a1796490968b3ff Mon Sep 17 00:00:00 2001
+From: SuperBFG7 <daniel@despite.ch>
+Date: Tue, 2 Jun 2020 12:41:52 +0200
+Subject: [PATCH] added forward declarations
+
+
+[Retrieved (and slightly updated to remove update of dirble_api_token)
+from:
+https://github.com/notandy/ympd/pull/191/commits/2268e0f0f372a61827b912155a1796490968b3ff]
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+---
+ src/mpd_client.c | 2 ++
+ src/mpd_client.h | 6 ++++--
+ 2 files changed, 6 insertions(+), 2 deletions(-)
+
+diff --git a/src/mpd_client.c b/src/mpd_client.c
+index 2911e461..9f003ab0 100644
+--- a/src/mpd_client.c
++++ b/src/mpd_client.c
+@@ -30,6 +30,8 @@
+ 
+ /* forward declaration */
+ static int mpd_notify_callback(struct mg_connection *c, enum mg_event ev);
++char dirble_api_token[28];
++struct t_mpd mpd;
+ 
+ const char * mpd_cmd_strs[] = {
+     MPD_CMDS(GEN_STR)
+diff --git a/src/mpd_client.h b/src/mpd_client.h
+index 447dd563..9342c550 100644
+--- a/src/mpd_client.h
++++ b/src/mpd_client.h
+@@ -96,6 +96,8 @@ struct t_mpd {
+ 
+     int song_id;
+     unsigned queue_version;
+-} mpd;
++};
++
++extern struct t_mpd mpd;
+ 
+ struct t_mpd_client_session {
+     int song_id;
-- 
2.28.0

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

* [Buildroot] [PATCH 1/2] package/ympd: renumber patch
  2020-09-09 18:26 [Buildroot] [PATCH 1/2] package/ympd: renumber patch Fabrice Fontaine
  2020-09-09 18:26 ` [Buildroot] [PATCH 2/2] package/ympd: fix build with gcc 10 Fabrice Fontaine
@ 2020-09-19 21:23 ` Thomas Petazzoni
  2020-09-29 15:21 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2020-09-19 21:23 UTC (permalink / raw)
  To: buildroot

On Wed,  9 Sep 2020 20:26:39 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  .../{0002-only-c-language.patch => 0001-only-c-language.patch}    | 0
>  1 file changed, 0 insertions(+), 0 deletions(-)
>  rename package/ympd/{0002-only-c-language.patch => 0001-only-c-language.patch} (100%)

Both applied. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 1/2] package/ympd: renumber patch
  2020-09-09 18:26 [Buildroot] [PATCH 1/2] package/ympd: renumber patch Fabrice Fontaine
  2020-09-09 18:26 ` [Buildroot] [PATCH 2/2] package/ympd: fix build with gcc 10 Fabrice Fontaine
  2020-09-19 21:23 ` [Buildroot] [PATCH 1/2] package/ympd: renumber patch Thomas Petazzoni
@ 2020-09-29 15:21 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2020-09-29 15:21 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2020.02.x, 2020.05.x and 2020.08.x, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] package/ympd: fix build with gcc 10
  2020-09-09 18:26 ` [Buildroot] [PATCH 2/2] package/ympd: fix build with gcc 10 Fabrice Fontaine
@ 2020-09-29 15:21   ` Peter Korsgaard
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2020-09-29 15:21 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Fixes:
 >  - http://autobuild.buildroot.org/results/ea4b96ba8d4a398515ed349e8304a656b684f718

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2020.08.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2020-09-29 15:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-09 18:26 [Buildroot] [PATCH 1/2] package/ympd: renumber patch Fabrice Fontaine
2020-09-09 18:26 ` [Buildroot] [PATCH 2/2] package/ympd: fix build with gcc 10 Fabrice Fontaine
2020-09-29 15:21   ` Peter Korsgaard
2020-09-19 21:23 ` [Buildroot] [PATCH 1/2] package/ympd: renumber patch Thomas Petazzoni
2020-09-29 15:21 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.