summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-06-04 16:25:39 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-06-04 21:18:40 +0200
commit13b25198008e621c881416b0d6898c1b41375728 (patch)
tree279f23fe69a2201888322c985caeb1c8baaf1381 /bin
parent530899ba181cf7ae34c99ee061958b9e540082b6 (diff)
update_pch: add a bunch of pch files
connectivity: 3m52s -> 2m47s cppcanvas: 28s -> 13s cppuhelper: 20s -> 14s dbaccess: 2m38s -> 2m01s hwpfilter: 16s -> 13s sot: 21s -> 16s Change-Id: I49286bfe6be73dd1b861be632b95e17a99e82f8a
Diffstat (limited to 'bin')
-rwxr-xr-xbin/update_pch.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/update_pch.sh b/bin/update_pch.sh
index 51139b4e306f..09ffd08fe028 100755
--- a/bin/update_pch.sh
+++ b/bin/update_pch.sh
@@ -132,6 +132,8 @@ function filter_ignore()
# - comphelper/servicedecl.hxx ignore for now
# - sores.hxx provides BMP_PLUGIN, which is redefined
# - some sources play ugly #define tricks with editeng/eeitemid.hxx
+# - objbase.h and oledb.h break ado
+# - xmlreader.h breaks cppuhelper
# - jerror.h and jpeglib.h are not self-contained
# - service1.hxx/service2.hxx are inside comments in frameworks/
grep -E -e '\.h[">]$' -e '\.hpp[">]$' -e '\.hdl[">]$' -e '\.hxx[">]$' -e '^[^\.]*>$' | \
@@ -143,6 +145,9 @@ function filter_ignore()
grep -v -F -e '#include <editeng/eeitemid.hxx>' | \
grep -v -F -e '#include <service1.hxx>' | \
grep -v -F -e '#include <service2.hxx>' | \
+ grep -v -F -e '#include <objbase.h>' | \
+ grep -v -F -e '#include <oledb.h>' | \
+ grep -v -F -e '#include <xmlreader/xmlreader.hxx>' | \
grep -v -F -e '#include "jerror.h"' | \
grep -v -F -e '#include "jpeglib.h"'
)