2a5d7de8df
As reported by Sagaert Johan in the mailing list mpd 0.18.x fails to build with gcc 4.9.x Patch status: sent upstream. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
27 lines
730 B
Diff
27 lines
730 B
Diff
From 4181473f66349ceb53f2d4e967f399932b3efa39 Mon Sep 17 00:00:00 2001
|
|
From: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
|
Date: Tue, 8 Jul 2014 10:40:50 -0300
|
|
Subject: [PATCH 4/4] playlist/PlsPlaylistPlugin: fix build failure due to
|
|
missing stdio.h include
|
|
|
|
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
|
---
|
|
src/playlist/PlsPlaylistPlugin.cxx | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/playlist/PlsPlaylistPlugin.cxx b/src/playlist/PlsPlaylistPlugin.cxx
|
|
index 99be3ad..7b5c882 100644
|
|
--- a/src/playlist/PlsPlaylistPlugin.cxx
|
|
+++ b/src/playlist/PlsPlaylistPlugin.cxx
|
|
@@ -31,6 +31,7 @@
|
|
#include <glib.h>
|
|
|
|
#include <string>
|
|
+#include <stdio.h>
|
|
|
|
static constexpr Domain pls_domain("pls");
|
|
|
|
--
|
|
1.8.5.5
|
|
|