diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2019-10-13 10:55:02 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2019-10-14 11:07:30 +0200 |
commit | f5fa61e7f00733df3a064c297b4a31b182be05b6 (patch) | |
tree | 2b96fc83a889bda8820649adef0e8b6cb95b17ac /bin/update_pch | |
parent | a77321a07695c067662885eea5369e3c821dccb0 (diff) |
add PCHs for more external libs
I think this is all external libs where it makes sense for them
to have their own PCH and be worth it. Maybe some smaller externals
can also use the common system PCH, but unfortunately many externals
use all kinds of defines that affect system headers, which is
a problem for the common system PCH.
Change-Id: I2c589ac55d93728daf3b158df110722e5f055d45
Reviewed-on: https://gerrit.libreoffice.org/80728
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'bin/update_pch')
-rwxr-xr-x | bin/update_pch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/update_pch b/bin/update_pch index 0fd06b5bdbd5..62ed9e773779 100755 --- a/bin/update_pch +++ b/bin/update_pch @@ -426,6 +426,16 @@ def filter_ignore(line, module): ignore_list += [ 'third_party/freetype/include/pstables.h', ] + if module == 'external/clucene': + ignore_list += [ + '_bufferedstream.h', + '_condition.h', + '_gunichartables.h', + '_threads.h', + 'error.h', + 'CLucene/LuceneThreads.h', + 'CLucene/config/_threads.h' + ] for i in ignore_list: if line.startswith(i): |