ports/audio/ympd/files/patch-src_mpd__client.h
Niclas Zeising c45fb95a69 audio/ympd: Fix build with -fno-common
Add patches to fix the build of audio/ympd with -fno-common, which is the
default with llvm 11.

MFH:		2020Q3 (implicit, -fno-common fixes, ok by joenum)
2020-08-28 21:29:23 +00:00

18 lines
362 B
C

--- src/mpd_client.h.orig 2016-02-13 21:01:52 UTC
+++ src/mpd_client.h
@@ -92,12 +92,14 @@ struct t_mpd {
int song_id;
unsigned queue_version;
-} mpd;
+};
struct t_mpd_client_session {
int song_id;
unsigned queue_version;
};
+
+extern struct t_mpd mpd;
void mpd_poll(struct mg_server *s);
int callback_mpd(struct mg_connection *c);