From 83a4841ea2b7ab5349f3357211be6928d6e8b440 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Fri, 6 Apr 2018 17:47:46 +0200 Subject: [PATCH] Do not build ctpp2 with iconv support. --- kiwixbuild/dependencies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiwixbuild/dependencies.py b/kiwixbuild/dependencies.py index 5b35c3b..b395414 100644 --- a/kiwixbuild/dependencies.py +++ b/kiwixbuild/dependencies.py @@ -147,7 +147,7 @@ class CTPP2(Dependency): ] class Builder(CMakeBuilder): - configure_option = "-DMD5_SUPPORT=OFF" + configure_option = "-DMD5_SUPPORT=OFF -DICONV_SUPPORT=OFF" class CTPP2C(CTPP2):