1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-23 01:52:48 +03:00

Fix missing xmlsave.h module which was ignored in recent builds

due to "save.h" rule discarding it too
This commit is contained in:
Daniel Veillard
2012-08-15 09:10:50 +08:00
parent d10a72ce8c
commit 64d11249a5
4 changed files with 439 additions and 52 deletions

View File

@@ -55,7 +55,7 @@ ignored_files = {
"xzlib.h": "Internal API only 2.8.0",
"buf.h": "Internal API only 2.9.0",
"enc.h": "Internal API only 2.9.0",
"save.h": "Internal API only 2.9.0",
"/save.h": "Internal API only 2.9.0",
}
ignored_words = {
@@ -1681,7 +1681,8 @@ class docBuilder:
skip = 0
for excl in self.excludes:
if string.find(file, excl) != -1:
skip = 1;
print "Skipping %s" % file
skip = 1
break
if skip == 0:
self.modules[file] = None;
@@ -1690,7 +1691,8 @@ class docBuilder:
skip = 0
for excl in self.excludes:
if string.find(file, excl) != -1:
skip = 1;
print "Skipping %s" % file
skip = 1
break
if skip == 0:
self.headers[file] = None;