mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
- xmllint.c: Dan Timis reported a portability problem
on Macs without mmap, fixed it. Daniel
This commit is contained in:
parent
b38bd55ae5
commit
3b2c26134e
@ -1,3 +1,8 @@
|
||||
Wed Apr 4 02:07:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
||||
|
||||
* xmllint.c: Dan Timis reported a portability problem
|
||||
on Macs without mmap, fixed it.
|
||||
|
||||
Tue Apr 3 20:20:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
||||
|
||||
* testXPath.c : added a --tree option allowing to display the
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user