forked from Lainports/opnsense-ports
20 lines
617 B
C++
20 lines
617 B
C++
--- src/libtomahawk/utils/TomahawkUtils.cpp.orig 2014-11-20 00:17:56 UTC
|
|
+++ src/libtomahawk/utils/TomahawkUtils.cpp
|
|
@@ -19,6 +19,8 @@
|
|
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
+#include <unistd.h>
|
|
+
|
|
#include "utils/TomahawkUtils.h"
|
|
|
|
#include "config.h"
|
|
@@ -183,7 +185,7 @@ appDataDir()
|
|
}
|
|
#elif defined(Q_OS_MAC)
|
|
path = appSupportFolderPath();
|
|
- #elif defined(Q_OS_LINUX)
|
|
+ #elif defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD)
|
|
path = QDir::home().filePath( ".local/share" );
|
|
#else
|
|
path = QCoreApplication::applicationDirPath();
|