From 69d9716f8b7442c843c3f800d003d7311951b950 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 11 Nov 2009 14:13:24 +0100 Subject: update: added missing config.h includes This broke sticker and archive support. --- src/update_remove.c | 3 ++- src/update_walk.c | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/update_remove.c b/src/update_remove.c index bf3d88db6..a60f0cb98 100644 --- a/src/update_remove.c +++ b/src/update_remove.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 "notify.h" #include "event_pipe.h" @@ -54,7 +55,7 @@ song_remove_event(void) #ifdef ENABLE_SQLITE /* if the song has a sticker, remove it */ if (sticker_enabled()) - sticker_song_remove(song); + sticker_song_delete(removed_song); #endif playlist_delete_song(&g_playlist, removed_song); 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 #include -- cgit v1.2.3