From 4fb930fa5253e2489a436757aea6204f11beca25 Mon Sep 17 00:00:00 2001 From: Greg Landrum Date: Fri, 17 Jul 2020 17:25:16 +0200 Subject: [PATCH] Add new RDKit dependency (freetype) (#4150) * Add new RDKit dependency (freetype) FIxes Issue #23703 * just remove the freetype requirement for now otherwise we have to build that static and that's a mess * Update Dockerfile --- projects/rdkit/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/rdkit/build.sh b/projects/rdkit/build.sh index b571db593..2ad830e91 100755 --- a/projects/rdkit/build.sh +++ b/projects/rdkit/build.sh @@ -43,7 +43,7 @@ cd $SRC/boost_1_69_0 && \ cd $SRC/rdkit mkdir -p build && cd build -cmake -DRDK_BUILD_PYTHON_WRAPPERS=OFF -DLIB_FUZZING_ENGINE=${LIB_FUZZING_ENGINE} -DRDK_BUILD_FUZZ_TARGETS=ON -DRDK_INSTALL_STATIC_LIBS=ON -DBoost_USE_STATIC_LIBS=ON .. +cmake -DRDK_BUILD_PYTHON_WRAPPERS=OFF -DRDK_BUILD_FREETYPE_SUPPORT=OFF -DLIB_FUZZING_ENGINE=${LIB_FUZZING_ENGINE} -DRDK_BUILD_FUZZ_TARGETS=ON -DRDK_INSTALL_STATIC_LIBS=ON -DBoost_USE_STATIC_LIBS=ON .. make -j$(nproc) make install