diff options
author | Max Kellermann <max@duempel.org> | 2013-10-02 08:11:58 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-02 08:56:27 +0200 |
commit | c2d3ed2acc9fdb9b0900b70d427d91b22684a8ec (patch) | |
tree | 457c034ea308bd358d9fe4e0251ca7e3166187db | |
parent | 0339c8d025a9428101da9ab3637636dcc4d271c5 (diff) | |
download | mpd-c2d3ed2acc9fdb9b0900b70d427d91b22684a8ec.tar.gz mpd-c2d3ed2acc9fdb9b0900b70d427d91b22684a8ec.tar.xz mpd-c2d3ed2acc9fdb9b0900b70d427d91b22684a8ec.zip |
Listen, ...: add missing includes
-rw-r--r-- | src/DirectorySave.cxx | 2 | ||||
-rw-r--r-- | src/Listen.cxx | 2 | ||||
-rw-r--r-- | src/PlaylistFile.cxx | 2 | ||||
-rw-r--r-- | src/QueueSave.cxx | 2 | ||||
-rw-r--r-- | src/SongSave.cxx | 2 | ||||
-rw-r--r-- | src/StateFile.cxx | 3 | ||||
-rw-r--r-- | src/db/SimpleDatabasePlugin.cxx | 2 | ||||
-rw-r--r-- | test/DumpDatabase.cxx | 2 |
8 files changed, 15 insertions, 2 deletions
diff --git a/src/DirectorySave.cxx b/src/DirectorySave.cxx index c00338182..c39ac1edc 100644 --- a/src/DirectorySave.cxx +++ b/src/DirectorySave.cxx @@ -27,6 +27,8 @@ #include "util/Error.hxx" #include "util/Domain.hxx" +#include <glib.h> + #include <assert.h> #include <string.h> diff --git a/src/Listen.cxx b/src/Listen.cxx index 0dcd6fddf..1c240353d 100644 --- a/src/Listen.cxx +++ b/src/Listen.cxx @@ -29,6 +29,8 @@ #include "util/Error.hxx" #include "fs/Path.hxx" +#include <glib.h> + #include <string.h> #include <assert.h> diff --git a/src/PlaylistFile.cxx b/src/PlaylistFile.cxx index 85ddb7168..7265dec99 100644 --- a/src/PlaylistFile.cxx +++ b/src/PlaylistFile.cxx @@ -37,6 +37,8 @@ #include "util/UriUtil.hxx" #include "util/Error.hxx" +#include <glib.h> + #include <assert.h> #include <sys/types.h> #include <sys/stat.h> diff --git a/src/QueueSave.cxx b/src/QueueSave.cxx index a9c4b4cff..2e48b681f 100644 --- a/src/QueueSave.cxx +++ b/src/QueueSave.cxx @@ -28,6 +28,8 @@ #include "util/UriUtil.hxx" #include "util/Error.hxx" +#include <glib.h> + #include <stdlib.h> #define PRIO_LABEL "Prio: " diff --git a/src/SongSave.cxx b/src/SongSave.cxx index 751d53efb..1ed9906c4 100644 --- a/src/SongSave.cxx +++ b/src/SongSave.cxx @@ -31,7 +31,7 @@ #include <glib.h> -#include <stdlib.h> +#include <string.h> #undef G_LOG_DOMAIN #define G_LOG_DOMAIN "song" diff --git a/src/StateFile.cxx b/src/StateFile.cxx index caba82da8..901ebca39 100644 --- a/src/StateFile.cxx +++ b/src/StateFile.cxx @@ -25,9 +25,10 @@ #include "Partition.hxx" #include "Volume.hxx" #include "event/Loop.hxx" +#include "fs/FileSystem.hxx" #include <glib.h> -#include <assert.h> + #include <string.h> #include <errno.h> diff --git a/src/db/SimpleDatabasePlugin.cxx b/src/db/SimpleDatabasePlugin.cxx index 7ba86fb38..c28f0e4cc 100644 --- a/src/db/SimpleDatabasePlugin.cxx +++ b/src/db/SimpleDatabasePlugin.cxx @@ -32,6 +32,8 @@ #include "util/Error.hxx" #include "util/Domain.hxx" +#include <glib.h> + #include <sys/types.h> #include <errno.h> diff --git a/test/DumpDatabase.cxx b/test/DumpDatabase.cxx index 9179c7e05..395ff4f23 100644 --- a/test/DumpDatabase.cxx +++ b/test/DumpDatabase.cxx @@ -30,6 +30,8 @@ #include "fs/Path.hxx" #include "util/Error.hxx" +#include <glib.h> + #include <iostream> using std::cout; using std::cerr; |