Add missing include for symlink()

(cherry picked from commit 7671108aa8)
This commit is contained in:
John Maguire 2014-02-06 19:46:08 +01:00
parent 2b3acb2ba8
commit 494882b732
1 changed files with 6 additions and 1 deletions

View File

@ -15,8 +15,9 @@
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#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 <QtCrypto>
#endif // HAVE_QCA
#ifdef Q_OS_UNIX
#include <unistd.h>
#endif
const char* SpotifyBlobDownloader::kSignatureSuffix = ".sha1";