Skip to content

Commit

Permalink
libtiff: disable lerc by default
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Jul 15, 2024
1 parent 8ace7ff commit 313bd44
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion recipes/libtiff/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ class LibtiffConan(ConanFile):
"lzma": True,
"jpeg": "libjpeg",
"zlib": True,
"lerc": True,
# LERC is disabled by default to avoid linking against the C++ stdlib unnecessarily
"lerc": False,
"libdeflate": True,
"zstd": True,
"jbig": True,
Expand Down

0 comments on commit 313bd44

Please sign in to comment.