http://www.goldencheetah.org/ PR: 203080 Submitted by: trebbu@googlemail.com (maintainer) Approved by: swills (maintainer) Differential Revision: https://reviews.freebsd.org/D8383
11 lines
324 B
C++
11 lines
324 B
C++
--- src/Settings.cpp.orig 2015-08-12 08:43:33 UTC
|
|
+++ src/Settings.cpp
|
|
@@ -11,6 +11,8 @@ int OperatingSystem = WINDOWS;
|
|
int OperatingSystem = LINUX;
|
|
#elif defined Q_OS_OPENBSD
|
|
int OperatingSystem = OPENBSD;
|
|
+#elif defined Q_OS_FREEBSD
|
|
+int OperatingSystem = FREEBSD;
|
|
#endif
|
|
|
|
static GSettings *GetApplicationSettings()
|