From 07974a6e4df2c93e3544d53ce36b4bd42c71517f Mon Sep 17 00:00:00 2001 From: Andreas Zahnen Date: Mon, 2 Dec 2024 17:08:01 +0100 Subject: [PATCH] fix libtiff --- .gitignore | 1 + xtraplatform-proj/tiff.gradle | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f83efc9..69a3ad7 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ xtraplatform-cql/src/main/gen/ .DS_Store xtraplatform-cql/src/main/antlr/de/ii/xtraplatform/cql/infra/gen/ libs/ +gradle.properties diff --git a/xtraplatform-proj/tiff.gradle b/xtraplatform-proj/tiff.gradle index fcf9b44..00417c9 100644 --- a/xtraplatform-proj/tiff.gradle +++ b/xtraplatform-proj/tiff.gradle @@ -37,7 +37,7 @@ task getTiff(dependsOn: downloadTiff, type: Copy) { task configureTiff(dependsOn: [getTiff, buildZlib], type: Exec) { outputs.dir tiffBuildDir workingDir tiffBuildDir - commandLine './configure', '--enable-static=false', '--disable-pixarlog', '--disable-cxx', "--with-zlib-include-dir=${zlibBuildDir}", "--with-zlib-lib-dir=${zlibBuildDir}" + commandLine './configure', '--enable-static=false', '--disable-pixarlog', '--disable-cxx', '--disable-libdeflate', '--disable-jbig', '--disable-jpeg', "--with-zlib-include-dir=${zlibBuildDir}", "--with-zlib-lib-dir=${zlibBuildDir}" } task buildTiff(dependsOn: configureTiff, type: Exec) {