s/LIBXML_VERSION_NUMBER/LIBXML_VERSION/ seems the macro was renamed, this

* libxml.m4: s/LIBXML_VERSION_NUMBER/LIBXML_VERSION/ seems the
  macro was renamed, this should close bug #58683
Daniel
This commit is contained in:
Daniel Veillard 2001-08-13 11:24:16 +00:00
parent f300b7e701
commit 70ac0e3e2e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Mon Aug 13 13:22:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxml.m4: s/LIBXML_VERSION_NUMBER/LIBXML_VERSION/ seems the
macro was renamed, this should close bug #58683
Mon Aug 13 12:33:40 CEST 2001 Daniel Veillard <daniel@veillard.com>
* SAX.c: small fix fixing bug #58539 reported by coolo, in

View File

@ -81,7 +81,7 @@ main()
free(tmp_version);
/* Capture the version information from the header files */
tmp_int_version = LIBXML_VERSION_NUMBER;
tmp_int_version = LIBXML_VERSION;
xml_major_version=tmp_int_version / 10000;
xml_minor_version=(tmp_int_version - xml_major_version * 10000) / 100;
xml_micro_version=(tmp_int_version - xml_minor_version * 100 - xml_major_version * 10000);