[Pkg-owncloud-commits] [owncloud-client] 39/70: make Debian GNU/kFreeBSD compile
Sandro Knauß
hefee-guest at moszumanska.debian.org
Sat May 17 20:01:28 UTC 2014
This is an automated email from the git hooks/post-receive script.
hefee-guest pushed a commit to branch master
in repository owncloud-client.
commit 07f57b19825a4cb774c5ff7822511ef0b4b5847b
Author: hefee <hefee at netzguerilla.net>
Date: Tue Apr 29 11:02:44 2014 +0200
make Debian GNU/kFreeBSD compile
---
src/mirall/application.cpp | 12 +++++-------
src/mirall/folderwatcher.cpp | 2 +-
src/mirall/utility.cpp | 4 ++--
3 files changed, 8 insertions(+), 10 deletions(-)
diff --git a/src/mirall/application.cpp b/src/mirall/application.cpp
index aa1ed30..7a92402 100644
--- a/src/mirall/application.cpp
+++ b/src/mirall/application.cpp
@@ -64,14 +64,12 @@ static const char optionsC[] =
QString applicationTrPath()
{
-#if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD)
- return QString::fromLatin1(DATADIR"/"APPLICATION_EXECUTABLE"/i18n/");
-#endif
-#ifdef Q_OS_MAC
- return QApplication::applicationDirPath()+QLatin1String("/../Resources/Translations"); // path defaults to app dir.
-#endif
-#ifdef Q_OS_WIN
+#if defined(Q_OS_WIN)
return QApplication::applicationDirPath();
+#elif defined(Q_OS_MAC)
+ return QApplication::applicationDirPath()+QLatin1String("/../Resources/Translations"); // path defaults to app dir.
+#elif defined(Q_OS_UNIX)
+ return QString::fromLatin1(DATADIR"/"APPLICATION_EXECUTABLE"/i18n/");
#endif
}
}
diff --git a/src/mirall/folderwatcher.cpp b/src/mirall/folderwatcher.cpp
index e927c0f..eccf94d 100644
--- a/src/mirall/folderwatcher.cpp
+++ b/src/mirall/folderwatcher.cpp
@@ -29,7 +29,7 @@
#include "mirall/folderwatcher_win.h"
#elif defined(Q_OS_MAC)
#include "mirall/folderwatcher_mac.h"
-#elif defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD)
+#elif defined(Q_OS_UNIX)
#include "mirall/folderwatcher_linux.h"
#endif
diff --git a/src/mirall/utility.cpp b/src/mirall/utility.cpp
index 1420984..3453c4b 100644
--- a/src/mirall/utility.cpp
+++ b/src/mirall/utility.cpp
@@ -143,7 +143,7 @@ QString Utility::platform()
return QLatin1String("Linux");
#elif defined(__DragonFly__) // Q_OS_FREEBSD also defined
return QLatin1String("DragonFlyBSD");
-#elif defined(Q_OS_FREEBSD)
+#elif defined(Q_OS_FREEBSD) || defined(Q_OS_FREEBSD_KERNEL)
return QLatin1String("FreeBSD");
#elif defined(Q_OS_NETBSD)
return QLatin1String("NetBSD");
@@ -199,7 +199,7 @@ void Utility::setLaunchOnStartup(const QString &appName, const QString& guiName,
qint64 Utility::freeDiskSpace(const QString &path, bool *ok)
{
-#if defined(Q_OS_MAC) || defined(Q_OS_FREEBSD)
+#if defined(Q_OS_MAC) || defined(Q_OS_FREEBSD) || defined(Q_OS_FREEBSD_KERNEL)
struct statvfs stat;
statvfs(path.toUtf8().data(), &stat);
return (qint64) stat.f_bavail * stat.f_frsize;
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-client.git
More information about the Pkg-owncloud-commits
mailing list