Enable compilation on FreeBSD (#403)

This commit is contained in:
Colin Lord 2018-08-12 01:33:36 -05:00 committed by mujx
parent cebd8cbc19
commit bcd92c0604
3 changed files with 6 additions and 4 deletions

View File

@ -90,6 +90,8 @@ private:
return "Nheko on Linux"; return "Nheko on Linux";
#elif defined(Q_OS_WIN) #elif defined(Q_OS_WIN)
return "Nheko on Windows"; return "Nheko on Windows";
#elif defined(Q_OS_FREEBSD)
return "Nheko on FreeBSD";
#else #else
return "Nheko"; return "Nheko";
#endif #endif

View File

@ -103,7 +103,7 @@ main(int argc, char *argv[])
return 0; return 0;
} }
#if defined(Q_OS_LINUX) || defined(Q_OS_WIN) #if defined(Q_OS_LINUX) || defined(Q_OS_WIN) || defined(Q_OS_FREEBSD)
if (qgetenv("QT_SCALE_FACTOR").size() == 0) { if (qgetenv("QT_SCALE_FACTOR").size() == 0) {
float factor = utils::scaleFactor(); float factor = utils::scaleFactor();

View File

@ -4,7 +4,7 @@
#include <QObject> #include <QObject>
#include <QString> #include <QString>
#if defined(Q_OS_LINUX) #if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD)
#include <QtDBus/QDBusArgument> #include <QtDBus/QDBusArgument>
#include <QtDBus/QDBusInterface> #include <QtDBus/QDBusInterface>
#endif #endif
@ -31,7 +31,7 @@ public:
signals: signals:
void notificationClicked(const QString roomId, const QString eventId); void notificationClicked(const QString roomId, const QString eventId);
#if defined(Q_OS_LINUX) #if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD)
private: private:
QDBusInterface dbus; QDBusInterface dbus;
uint showNotification(const QString summary, const QString text, const QImage image); uint showNotification(const QString summary, const QString text, const QImage image);
@ -47,7 +47,7 @@ private slots:
void notificationClosed(uint id, uint reason); void notificationClosed(uint id, uint reason);
}; };
#if defined(Q_OS_LINUX) #if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD)
QDBusArgument & QDBusArgument &
operator<<(QDBusArgument &arg, const QImage &image); operator<<(QDBusArgument &arg, const QImage &image);
const QDBusArgument & const QDBusArgument &