VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Platform/Unix/SystemInfo.cpp
diff options
context:
space:
mode:
authorkokokodak <82901997+kokokodak@users.noreply.github.com>2021-07-14 14:43:34 +0300
committerGitHub <noreply@github.com>2021-07-14 13:43:34 +0200
commitc8830a04b4adc3048b76c658fa1084e749f188da (patch)
treeeebca034aa351f33461d8980e478eb7cbe27c825 /src/Platform/Unix/SystemInfo.cpp
parent0ff7f4548a433b10fa9eb5c61bbe589eb6b9eed1 (diff)
downloadVeraCrypt-c8830a04b4adc3048b76c658fa1084e749f188da.tar.gz
VeraCrypt-c8830a04b4adc3048b76c658fa1084e749f188da.zip
Add support for OpenBSD (#779)
* OpenBSD: add basic support modified: Build/Include/Makefile.inc modified: Driver/Fuse/FuseService.cpp modified: Main/FatalErrorHandler.cpp modified: Makefile modified: Platform/Unix/File.cpp modified: Platform/Unix/FilesystemPath.cpp modified: Platform/Unix/SystemInfo.cpp * OpenBSD: some necessary files were missing new file: Core/Unix/OpenBSD/CoreOpenBSD.cpp new file: Core/Unix/OpenBSD/CoreOpenBSD.h new file: Core/Unix/OpenBSD/System.h
Diffstat (limited to 'src/Platform/Unix/SystemInfo.cpp')
-rw-r--r--src/Platform/Unix/SystemInfo.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Platform/Unix/SystemInfo.cpp b/src/Platform/Unix/SystemInfo.cpp
index d4f648bb..f09674aa 100644
--- a/src/Platform/Unix/SystemInfo.cpp
+++ b/src/Platform/Unix/SystemInfo.cpp
@@ -24,6 +24,8 @@ namespace VeraCrypt
return L"Mac OS X";
#elif defined (TC_FREEBSD)
return L"FreeBSD";
+#elif defined (TC_OPENBSD)
+ return L"OpenBSD";
#elif defined (TC_SOLARIS)
return L"Solaris";
#else