Browse Source

Merge pull request #3203 from glassez/unistd

Fix qbittorrent-nox compilation.
adaptive-webui-19844
sledgehammer999 10 years ago
parent
commit
157b1eadfa
  1. 8
      src/app/main.cpp

8
src/app/main.cpp

@ -33,6 +33,7 @@ @@ -33,6 +33,7 @@
#include <QScopedPointer>
#ifndef DISABLE_GUI
// GUI-only includes
#include <QFont>
#include <QMessageBox>
#include <QPainter>
@ -47,8 +48,13 @@ Q_IMPORT_PLUGIN(QICOPlugin) @@ -47,8 +48,13 @@ Q_IMPORT_PLUGIN(QICOPlugin)
Q_IMPORT_PLUGIN(qico)
#endif
#endif // QBT_STATIC_QT
#else // DISABLE_GUI
#else
// NoGUI-only includes
#include <cstdio>
#ifdef Q_OS_UNIX
#include "unistd.h"
#endif
#endif // DISABLE_GUI
#ifdef Q_OS_UNIX

Loading…
Cancel
Save