Macos build fixes

This commit is contained in:
pokamest 2022-01-23 15:25:53 -08:00
parent daf53226c3
commit 8e26da1759
4 changed files with 12 additions and 6 deletions

View file

@ -148,7 +148,11 @@ bool ContainerProps::isWorkingOnPlatform(DockerContainer c)
default: return false;
}
#elif defined (Q_OS_MAC)
return false;
switch (c) {
case DockerContainer::WireGuard: return false;
case DockerContainer::Ipsec: return false;
default: return true;
}
#elif defined (Q_OS_ANDROID)
switch (c) {