Merge pull request #1611 from Absolight/freebsd-port

Freebsd port - Thanks a lot!
This commit is contained in:
dragotin 2014-03-25 17:28:06 +01:00
commit efee9c689c
2 changed files with 2 additions and 2 deletions

View file

@ -64,7 +64,7 @@ static const char optionsC[] =
QString applicationTrPath()
{
#ifdef Q_OS_LINUX
#if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD)
return QString::fromLatin1(DATADIR"/"APPLICATION_EXECUTABLE"/i18n/");
#endif
#ifdef Q_OS_MAC

View file

@ -29,7 +29,7 @@
#include "mirall/folderwatcher_win.h"
#elif defined(Q_OS_MAC)
#include "mirall/folderwatcher_mac.h"
#elif defined(Q_OS_LINUX)
#elif defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD)
#include "mirall/folderwatcher_linux.h"
#endif