From 3b2c26134e098095b76d405debe78d59a3983c75 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Wed, 4 Apr 2001 00:09:00 +0000 Subject: [PATCH] - xmllint.c: Dan Timis reported a portability problem on Macs without mmap, fixed it. Daniel --- ChangeLog | 5 +++++ xmllint.c | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c5786383..3aa1a2e7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Apr 4 02:07:53 CEST 2001 Daniel Veillard + + * xmllint.c: Dan Timis reported a portability problem + on Macs without mmap, fixed it. + Tue Apr 3 20:20:51 CEST 2001 Daniel Veillard * testXPath.c : added a --tree option allowing to display the diff --git a/xmllint.c b/xmllint.c index dfe1e690..b1f56f03 100644 --- a/xmllint.c +++ b/xmllint.c @@ -611,6 +611,7 @@ static void parseAndPrintFile(char *filename) { if ((timing) && (!repeat)) { gettimeofday(&begin, NULL); } +#ifdef HAVE_SYS_MMAN_H if (memory) { xmlChar *result; int len; @@ -626,7 +627,9 @@ static void parseAndPrintFile(char *filename) { write(1, result, len); xmlFree(result); } - } else if (compress) + } else +#endif /* HAVE_SYS_MMAN_H */ + if (compress) xmlSaveFile("-", doc); else if (encoding != NULL) xmlSaveFileEnc("-", doc, encoding);