Disable libwebp when building libtiff

This commit is contained in:
manongjohn 2022-08-27 00:52:57 -04:00
parent 80d35a365e
commit 656109bfb6
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
#!/bin/bash
pushd thirdparty/tiff-4.2.0
CFLAGS="-fPIC" CXXFLAGS="-fPIC" ./configure --disable-jbig && make
CFLAGS="-fPIC" CXXFLAGS="-fPIC" ./configure --disable-jbig --disable-webp && make
popd
cd toonz

View file

@ -1,6 +1,6 @@
#!/bin/bash
pushd thirdparty/tiff-4.2.0
./configure --disable-lzma --without-x && make
./configure --disable-lzma --disable-webp --without-x && make
popd
cd toonz