Skip to content

Commit 6646ee1

Browse files
committed
Fixes for RetroPie Buster / GCC8
1 parent 2ef26d2 commit 6646ee1

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

VERSION.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION="3.17.1"
1+
VERSION="3.17.2"

skyscraper.pro

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ CONFIG += release
88
# set std-C++17 for clang and gcc
99
CONFIG += c++1z
1010
QT += core network sql xml
11+
# for GCC8 (RetroPie Buster)
12+
LIBS += -lstdc++fs
1113

1214
# Installation prefix path for bin/Skyscraper and etc/skyscraper/*
1315
PREFIX=$$(PREFIX)

src/zxinfodk.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
#include <QStringBuilder>
3939

4040
static const QList<QPair<QString, QString>>
41-
headers({QPair("User-Agent", "Skyscraper / " VERSION)});
41+
headers({QPair(QString("User-Agent"), QString("Skyscraper / ").append(VERSION))});
4242
static const QString mediaUrl = "https://zxinfo.dk/media";
4343

4444
ZxInfoDk::ZxInfoDk(Settings *config, QSharedPointer<NetManager> manager)

0 commit comments

Comments
 (0)