diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-09-29 15:41:19 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-10-17 18:40:21 +0200 |
commit | 7d6347f468050309d8b85089c13dd6d008297801 (patch) | |
tree | 1b723c1396258dfae3ab7bcb1e9f87141e739b79 /src/Main/Main.make | |
parent | e362d804b0a9e92b36f3e2d28d08bbbc387ac9a2 (diff) | |
download | VeraCrypt-7d6347f468050309d8b85089c13dd6d008297801.tar.gz VeraCrypt-7d6347f468050309d8b85089c13dd6d008297801.zip |
MacOSX: remove MacFUSE dependency and link against OSXFuse library. Now, only standard OSXFuse install is needed without MacFUSE compatibility option.
Diffstat (limited to 'src/Main/Main.make')
-rw-r--r-- | src/Main/Main.make | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Main/Main.make b/src/Main/Main.make index f4f254e1..8f223517 100644 --- a/src/Main/Main.make +++ b/src/Main/Main.make @@ -106,8 +106,11 @@ endif #------ FUSE configuration ------ +ifeq "$(PLATFORM)" "MacOSX" +FUSE_LIBS = $(shell pkg-config osxfuse --libs) +else FUSE_LIBS = $(shell pkg-config fuse --libs) - ++endif #------ Executable ------ |