VeraCrypt
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2024-06-23 16:54:43 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2024-06-23 16:54:43 +0200
commita23da988d2e8912bf2daad9135eccfe362f1a71d (patch)
tree02105fe37b10601e84c8070ff54010401cbdf169
parent210827d27cdab8ffe33e71653ff269cd3c02dcff (diff)
downloadVeraCrypt-a23da988d2e8912bf2daad9135eccfe362f1a71d.tar.gz
VeraCrypt-a23da988d2e8912bf2daad9135eccfe362f1a71d.zip
MacOSX: Disable libtiff support in wxWidget full build
-rw-r--r--src/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index d7f84148..e6bdd44d 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -553,6 +553,11 @@ endif
else
WX_CONFIGURE_FLAGS += --disable-graphics_ctx
endif
+else
+# Disable libtiff on macOS
+ifeq "$(PLATFORM)" "MacOSX"
+ WX_CONFIGURE_FLAGS += --without-libtiff
+endif
endif