configure.ac | 1 + 1 file changed, 1 insertion(+) New commits: commit c5af1c2615ded871946a1ac60e67497fc8753495 Author: Jan-Marek Glogowski <glo...@fbihome.de> AuthorDate: Fri Dec 31 20:52:55 2021 +0100 Commit: Jan-Marek Glogowski <glo...@fbihome.de> CommitDate: Sat Jan 1 11:46:50 2022 +0100
Forward PCH setting to cross-toolset Change-Id: I0b4bc369b070924cf3b79ba272b476501ca11467 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127820 Tested-by: Jenkins Reviewed-by: Jan-Marek Glogowski <glo...@fbihome.de> diff --git a/configure.ac b/configure.ac index 010552a5ba04..7d3df0f0b3d4 100644 --- a/configure.ac +++ b/configure.ac @@ -5515,6 +5515,7 @@ if test "$cross_compiling" = "yes"; then test "$with_galleries" = "no" -o -z "$WITH_GALLERY_BUILD" && sub_conf_opts="$sub_conf_opts --with-galleries=no --disable-database-connectivity" test -n "$with_help" -a "$with_help" != "no" && sub_conf_opts="$sub_conf_opts --with-help=$with_help" test "$enable_extensions" = yes || sub_conf_opts="$sub_conf_opts --disable-extensions" + test "${enable_pch+set}" = set && sub_conf_opts="$sub_conf_opts --enable-pch=${enable_pch}" test "$enable_wasm_strip" = "yes" && sub_conf_opts="$sub_conf_opts --enable-wasm-strip" test "${with_system_lockfile+set}" = set && sub_conf_opts="$sub_conf_opts --with-system-lockfile=${with_system_lockfile}" test "${enable_fuzzers}" = yes && sub_conf_opts="$sub_conf_opts --without-system-libxml"