mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-27 08:19:30 +08:00
Merge pull request #3203 from glassez/unistd
Fix qbittorrent-nox compilation.
This commit is contained in:
commit
157b1eadfa
@ -33,6 +33,7 @@
|
|||||||
#include <QScopedPointer>
|
#include <QScopedPointer>
|
||||||
|
|
||||||
#ifndef DISABLE_GUI
|
#ifndef DISABLE_GUI
|
||||||
|
// GUI-only includes
|
||||||
#include <QFont>
|
#include <QFont>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
@ -47,8 +48,13 @@ Q_IMPORT_PLUGIN(QICOPlugin)
|
|||||||
Q_IMPORT_PLUGIN(qico)
|
Q_IMPORT_PLUGIN(qico)
|
||||||
#endif
|
#endif
|
||||||
#endif // QBT_STATIC_QT
|
#endif // QBT_STATIC_QT
|
||||||
#else // DISABLE_GUI
|
|
||||||
|
#else
|
||||||
|
// NoGUI-only includes
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
|
#ifdef Q_OS_UNIX
|
||||||
|
#include "unistd.h"
|
||||||
|
#endif
|
||||||
#endif // DISABLE_GUI
|
#endif // DISABLE_GUI
|
||||||
|
|
||||||
#ifdef Q_OS_UNIX
|
#ifdef Q_OS_UNIX
|
||||||
|
Loading…
Reference in New Issue
Block a user