diff options
author | Max Kellermann <max@duempel.org> | 2009-11-11 14:13:24 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-11-11 14:13:24 +0100 |
commit | 69d9716f8b7442c843c3f800d003d7311951b950 (patch) | |
tree | 67fdb888083f91523beca15b141bb75b2ac0b3ad /src/update_walk.c | |
parent | 707b9fea17e5a7b67a181d000e118f9b1185ebc5 (diff) | |
download | mpd-69d9716f8b7442c843c3f800d003d7311951b950.tar.gz mpd-69d9716f8b7442c843c3f800d003d7311951b950.tar.xz mpd-69d9716f8b7442c843c3f800d003d7311951b950.zip |
update: added missing config.h includes
This broke sticker and archive support.
Diffstat (limited to 'src/update_walk.c')
-rw-r--r-- | src/update_walk.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/update_walk.c b/src/update_walk.c index 2c1049472..265c976b5 100644 --- a/src/update_walk.c +++ b/src/update_walk.c @@ -17,6 +17,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#include "config.h" /* must be first for large file support */ #include "update_internal.h" #include "database.h" #include "exclude.h" @@ -29,6 +30,10 @@ #include "decoder_plugin.h" #include "conf.h" +#ifdef ENABLE_ARCHIVE +#include "archive_list.h" +#endif + #include <glib.h> #include <assert.h> |