Skip to content

Commit

Permalink
Merge pull request #4124 from Be-ing/bsd_versionstore
Browse files Browse the repository at this point in the history
VersionStore: add BSDs to platform string
  • Loading branch information
daschuer authored Jul 19, 2021
2 parents 95e573e + f1411c7 commit 22102d9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/util/versionstore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@ QString VersionStore::platform() {
QString base = QStringLiteral("Linux");
#elif defined(__WINDOWS__)
QString base = QStringLiteral("Windows");
// Mixxx's CMakeLists.txt does not define this, but FreeBSD's ports system does.
#elif defined(__FREEBSD__)
QString base = QStringLiteral("FreeBSD");
#elif defined(__BSD__)
QString base = QStringLiteral("BSD");
#else
QString base = QStringLiteral("Unknown OS");
#endif
Expand Down

0 comments on commit 22102d9

Please sign in to comment.