mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-12 03:18:26 -06:00
Fixed macFUSE support for macOS 11 (Big Sur) (#699)
This commit is contained in:
@@ -170,7 +170,7 @@ namespace VeraCrypt
|
||||
|
||||
void EnsureVisible(bool bOnlyHeadingBar = false)
|
||||
{
|
||||
wxDisplay display (this);
|
||||
wxDisplay display;
|
||||
wxRect displayRect = display.GetClientArea();
|
||||
|
||||
bool bMove = false;
|
||||
|
||||
@@ -103,7 +103,7 @@ endif
|
||||
#------ FUSE configuration ------
|
||||
|
||||
ifeq "$(PLATFORM)" "MacOSX"
|
||||
FUSE_LIBS = $(shell pkg-config osxfuse --libs)
|
||||
FUSE_LIBS = $(shell pkg-config $(if $(patsubst 10.%,,$(VC_OSX_TARGET)),fuse,osxfuse) --libs)
|
||||
else
|
||||
FUSE_LIBS = $(shell pkg-config fuse --libs)
|
||||
endif
|
||||
|
||||
Reference in New Issue
Block a user