diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2024-06-23 16:54:43 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2024-06-23 16:54:43 +0200 |
commit | a23da988d2e8912bf2daad9135eccfe362f1a71d (patch) | |
tree | 02105fe37b10601e84c8070ff54010401cbdf169 /src/Makefile | |
parent | 210827d27cdab8ffe33e71653ff269cd3c02dcff (diff) | |
download | VeraCrypt-a23da988d2e8912bf2daad9135eccfe362f1a71d.tar.gz VeraCrypt-a23da988d2e8912bf2daad9135eccfe362f1a71d.zip |
MacOSX: Disable libtiff support in wxWidget full build
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 5 |
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 |