summaryrefslogtreecommitdiff
path: root/xmllint.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2006-07-13 06:29:56 +0000
committerDaniel Veillard <veillard@src.gnome.org>2006-07-13 06:29:56 +0000
commit75acfeea327667cf69f0bb201d55cae5f2e6ba2d (patch)
treee701d05861d2d088609d52a5b1bbd8375d8c3071 /xmllint.c
parent77aad34c941403c657786a15103c50ab55ee4dd7 (diff)
downloadlibxml2-75acfeea327667cf69f0bb201d55cae5f2e6ba2d.tar.gz
applied patch from Andrew W. Nosenko to expose if zlib support was
* configure.in parser.c xmllint.c include/libxml/parser.h include/libxml/xmlversion.h.in: applied patch from Andrew W. Nosenko to expose if zlib support was compiled in, in the header, in the feature API and in the xmllint --version output. Daniel
Diffstat (limited to 'xmllint.c')
-rw-r--r--xmllint.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/xmllint.c b/xmllint.c
index 79025f13..dbfc5bc9 100644
--- a/xmllint.c
+++ b/xmllint.c
@@ -2752,6 +2752,7 @@ static void showVersion(const char *name) {
if (xmlHasFeature(XML_WITH_DEBUG)) fprintf(stderr, "Debug ");
if (xmlHasFeature(XML_WITH_DEBUG_MEM)) fprintf(stderr, "MemDebug ");
if (xmlHasFeature(XML_WITH_DEBUG_RUN)) fprintf(stderr, "RunDebug ");
+ if (xmlHasFeature(XML_WITH_ZLIB)) fprintf(stderr, "Zlib ");
fprintf(stderr, "\n");
}