diff --git src/commonui/fz_paths.cpp src/commonui/fz_paths.cpp
index d977dd4..529f66e 100644
|
|
CLocalPath GetDefaultsDir()
|
329 | 329 | { |
330 | 330 | static CLocalPath path = [] { |
331 | 331 | CLocalPath path; |
332 | | #ifdef FZ_UNIX |
| 332 | #if defined(FZ_UNIX) || defined(FZ_OPENBSD) |
333 | 333 | path = GetUnadjustedSettingsDir(); |
334 | 334 | if (path.empty() || !FileExists(path.GetPath() + L"fzdefaults.xml")) { |
335 | 335 | if (FileExists(L"/etc/filezilla/fzdefaults.xml")) { |
diff --git src/engine/version.cpp src/engine/version.cpp
index 49256e8..409b3ed 100644
|
|
|
6 | 6 | |
7 | 7 | #if FZ_WINDOWS |
8 | 8 | #include <libfilezilla/glue/windows.hpp> |
9 | | #elif FZ_UNIX |
| 9 | #if defined(FZ_UNIX) || defined(FZ_OPENBSD) |
10 | 10 | #include <sys/utsname.h> |
11 | 11 | #else |
12 | 12 | #include <Carbon/Carbon.h> |