diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-08-14 16:19:25 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-08-14 18:55:18 +0200 |
commit | 8848f4e8c203e35f14a4f20919b826e2d667b757 (patch) | |
tree | b137b3a8f7f840b70cda26dc5c1d50cbcb3ba169 /bin | |
parent | 8bd6bf93b7711a7ac7c5cbd7c3bb980481570ebd (diff) |
xmlsecurity: remove NSS cert.h from PCH
nssrenam.h is another horror...
Change-Id: I166ac2ab1414e89d5cd4beae543670fdfa389adb
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/update_pch.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/update_pch.sh b/bin/update_pch.sh index 09ffd08fe028..0d0b8f6a9444 100755 --- a/bin/update_pch.sh +++ b/bin/update_pch.sh @@ -133,6 +133,7 @@ function filter_ignore() # - 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 +# - NSS cert.h may need to be mangled by nssrenam.h # - xmlreader.h breaks cppuhelper # - jerror.h and jpeglib.h are not self-contained # - service1.hxx/service2.hxx are inside comments in frameworks/ @@ -147,6 +148,7 @@ function filter_ignore() 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 <cert.h>' | \ grep -v -F -e '#include <xmlreader/xmlreader.hxx>' | \ grep -v -F -e '#include "jerror.h"' | \ grep -v -F -e '#include "jpeglib.h"' |