From 494882b732a36f04772273a9388379a673a017a7 Mon Sep 17 00:00:00 2001 From: John Maguire Date: Thu, 6 Feb 2014 19:46:08 +0100 Subject: [PATCH] Add missing include for symlink() (cherry picked from commit 7671108aa8d02658cd35cacf4337507cc80ea03a) --- src/internet/spotifyblobdownloader.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/internet/spotifyblobdownloader.cpp b/src/internet/spotifyblobdownloader.cpp index 2dbe7d70a..fe949aa55 100644 --- a/src/internet/spotifyblobdownloader.cpp +++ b/src/internet/spotifyblobdownloader.cpp @@ -15,8 +15,9 @@ along with Clementine. If not, see . */ -#include "config.h" #include "spotifyblobdownloader.h" + +#include "config.h" #include "spotifyservice.h" #include "core/logging.h" #include "core/network.h" @@ -32,6 +33,10 @@ #include #endif // HAVE_QCA +#ifdef Q_OS_UNIX + #include +#endif + const char* SpotifyBlobDownloader::kSignatureSuffix = ".sha1";