From 4fda021d16d58853c9a9f87b7cdc97acb25a7f6a Mon Sep 17 00:00:00 2001 From: John Maguire Date: Fri, 25 Mar 2011 15:48:54 +0000 Subject: [PATCH] Fix compile error in test when lastfm disabled. Fixes issue #1617 --- tests/song_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/song_test.cpp b/tests/song_test.cpp index aee32ffa7..d722d4799 100644 --- a/tests/song_test.cpp +++ b/tests/song_test.cpp @@ -18,8 +18,10 @@ #include "config.h" #include "core/encoding.h" #include "core/song.h" +#ifdef HAVE_LIBLASTFM #include "radio/fixlastfm.h" #include +#endif #include "gmock/gmock.h" #include "gtest/gtest.h"