mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
added --timing --copy timing for the copy applied patch from Craig Berry
* xmllint.c: added --timing --copy timing for the copy * vms/build_libxml.com: applied patch from Craig Berry to build with recent releases Daniel
This commit is contained in:
parent
13dfa87e91
commit
4edd3ed8c5
@ -1,3 +1,9 @@
|
|||||||
|
Mon Sep 20 22:01:47 CEST 2004 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* xmllint.c: added --timing --copy timing for the copy
|
||||||
|
* vms/build_libxml.com: applied patch from Craig Berry
|
||||||
|
to build with recent releases
|
||||||
|
|
||||||
Fri Sep 17 21:25:33 PDT 2004 William Brack <wbrack@mmm.com.hk>
|
Fri Sep 17 21:25:33 PDT 2004 William Brack <wbrack@mmm.com.hk>
|
||||||
|
|
||||||
* nanohttp.c, include/libxml/nanohttp.h: added the routine
|
* nanohttp.c, include/libxml/nanohttp.h: added the routine
|
||||||
|
@ -42,14 +42,14 @@ $!- list of sources to be built into the LIBXML library. Compare this list
|
|||||||
$! to the definition of "libxml2_la_SOURCES" in the file MAKEFILE.IN.
|
$! to the definition of "libxml2_la_SOURCES" in the file MAKEFILE.IN.
|
||||||
$! Currently this definition includes the list WITH_TRIO_SOURCES_TRUE
|
$! Currently this definition includes the list WITH_TRIO_SOURCES_TRUE
|
||||||
$!
|
$!
|
||||||
$ sources = "SAX.c entities.c encoding.c error.c parserInternals.c parser.c"
|
$ sources = "SAX.c entities.c encoding.c error.c parserInternals.c"
|
||||||
$ sources = sources + " tree.c hash.c list.c xmlIO.c xmlmemory.c uri.c valid.c"
|
$ sources = sources + " parser.c tree.c hash.c list.c xmlIO.c xmlmemory.c uri.c"
|
||||||
$ sources = sources + " xlink.c HTMLparser.c HTMLtree.c debugXML.c xpath.c "
|
$ sources = sources + " valid.c xlink.c HTMLparser.c HTMLtree.c debugXML.c xpath.c"
|
||||||
$ sources = sources + " xpointer.c xinclude.c nanohttp.c nanoftp.c "
|
$ sources = sources + " xpointer.c xinclude.c nanohttp.c nanoftp.c DOCBparser.c"
|
||||||
$ sources = sources + " DOCBparser.c catalog.c globals.c threads.c c14n.c "
|
$ sources = sources + " catalog.c globals.c threads.c c14n.c xmlstring.c"
|
||||||
$ sources = sources + " xmlregexp.c xmlschemas.c xmlschemastypes.c xmlunicode.c "
|
$ sources = sources + " xmlregexp.c xmlschemas.c xmlschemastypes.c xmlunicode.c"
|
||||||
$ sources = sources + " triostr.c trio.c xmlreader.c relaxng.c dict.c SAX2.c"
|
$ sources = sources + " triostr.c trio.c xmlreader.c relaxng.c dict.c SAX2.c"
|
||||||
$ sources = sources + " legacy.c xmldwalk.c chvalid.c"
|
$ sources = sources + " xmlwriter.c legacy.c chvalid.c pattern.c xmlsave.c"
|
||||||
$!
|
$!
|
||||||
$!- list of main modules to compile and link. Compare this list to the
|
$!- list of main modules to compile and link. Compare this list to the
|
||||||
$! definition of bin_PROGRAMS in MAKEFILE.IN
|
$! definition of bin_PROGRAMS in MAKEFILE.IN
|
||||||
|
12
xmllint.c
12
xmllint.c
@ -1236,8 +1236,20 @@ static void parseAndPrintFile(char *filename, xmlParserCtxtPtr rectxt) {
|
|||||||
*/
|
*/
|
||||||
if (copy) {
|
if (copy) {
|
||||||
tmp = doc;
|
tmp = doc;
|
||||||
|
if (timing) {
|
||||||
|
startTimer();
|
||||||
|
}
|
||||||
doc = xmlCopyDoc(doc, 1);
|
doc = xmlCopyDoc(doc, 1);
|
||||||
|
if (timing) {
|
||||||
|
endTimer("Copying");
|
||||||
|
}
|
||||||
|
if (timing) {
|
||||||
|
startTimer();
|
||||||
|
}
|
||||||
xmlFreeDoc(tmp);
|
xmlFreeDoc(tmp);
|
||||||
|
if (timing) {
|
||||||
|
endTimer("Freeing original");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif /* LIBXML_TREE_ENABLED */
|
#endif /* LIBXML_TREE_ENABLED */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user