update: added missing config.h includes

This broke sticker and archive support.
This commit is contained in:
Max Kellermann 2009-11-11 14:13:24 +01:00
parent 707b9fea17
commit 69d9716f8b
2 changed files with 7 additions and 1 deletions

View File

@ -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);

View File

@ -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>