mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Fix version parsing in win32/configure.js
Adjust to configure.ac changes. Should fix #185.
This commit is contained in:
parent
8b88503a27
commit
5614c07854
@ -208,15 +208,15 @@ function discoverVersion()
|
||||
while (cf.AtEndOfStream != true) {
|
||||
ln = cf.ReadLine();
|
||||
s = new String(ln);
|
||||
if (s.search(/^LIBXML_MAJOR_VERSION=/) != -1) {
|
||||
vf.WriteLine(s);
|
||||
verMajor = s.substring(s.indexOf("=") + 1, s.length);
|
||||
} else if(s.search(/^LIBXML_MINOR_VERSION=/) != -1) {
|
||||
vf.WriteLine(s);
|
||||
verMinor = s.substring(s.indexOf("=") + 1, s.length);
|
||||
} else if(s.search(/^LIBXML_MICRO_VERSION=/) != -1) {
|
||||
vf.WriteLine(s);
|
||||
verMicro = s.substring(s.indexOf("=") + 1, s.length);
|
||||
if (m = s.match(/^m4_define\(\[MAJOR_VERSION\], (\w+)\)/)) {
|
||||
vf.WriteLine("LIBXSLT_MAJOR_VERSION=" + m[1]);
|
||||
verMajor = m[1];
|
||||
} else if(m = s.match(/^m4_define\(\[MINOR_VERSION\], (\w+)\)/)) {
|
||||
vf.WriteLine("LIBXSLT_MINOR_VERSION=" + m[1]);
|
||||
verMinor = m[1];
|
||||
} else if(m = s.match(/^m4_define\(\[MICRO_VERSION\], (\w+)\)/)) {
|
||||
vf.WriteLine("LIBXSLT_MICRO_VERSION=" + m[1]);
|
||||
verMicro = m[1];
|
||||
} else if(s.search(/^LIBXML_MICRO_VERSION_SUFFIX=/) != -1) {
|
||||
vf.WriteLine(s);
|
||||
verMicroSuffix = s.substring(s.indexOf("=") + 1, s.length);
|
||||
|
Loading…
x
Reference in New Issue
Block a user