aboutsummaryrefslogtreecommitdiffstats
path: root/libxml.m4
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-08-13 11:24:16 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-08-13 11:24:16 +0000
commit70ac0e3e2e1dee65b7b6e7487ad6ae43bb79a4de (patch)
tree5ed7ccaf57b8b7db5cd6307c37b64e8652dae1ed /libxml.m4
parentf300b7e701fd4425de7a3bd635ed017afb04aea2 (diff)
downloadandroid_external_libxml2-70ac0e3e2e1dee65b7b6e7487ad6ae43bb79a4de.tar.gz
android_external_libxml2-70ac0e3e2e1dee65b7b6e7487ad6ae43bb79a4de.tar.bz2
android_external_libxml2-70ac0e3e2e1dee65b7b6e7487ad6ae43bb79a4de.zip
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
Diffstat (limited to 'libxml.m4')
-rw-r--r--libxml.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/libxml.m4 b/libxml.m4
index 1983c9b0..caa4d49d 100644
--- a/libxml.m4
+++ b/libxml.m4
@@ -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);