Skip to content

Commit

Permalink
Fix missing xmlsave.h module which was ignored in recent builds
Browse files Browse the repository at this point in the history
due to "save.h" rule discarding it too
  • Loading branch information
veillard committed Aug 15, 2012
1 parent d10a72c commit 64d1124
Show file tree
Hide file tree
Showing 4 changed files with 439 additions and 52 deletions.
8 changes: 5 additions & 3 deletions doc/apibuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"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 = {
Expand Down Expand Up @@ -1681,7 +1681,8 @@ def scan(self):
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;
Expand All @@ -1690,7 +1691,8 @@ def scan(self):
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;
Expand Down
Loading

0 comments on commit 64d1124

Please sign in to comment.