SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,22 @@
fix for -fno-common
https://svnweb.freebsd.org/changeset/ports/546834
Index: src/mpd_client.h
--- src/mpd_client.h.orig
+++ 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);