1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-07-29 15:41:13 +03:00

Remove ChangeLog

The ChangeLog is from pre-Git times.
This commit is contained in:
Nick Wellnhofer
2022-02-16 20:10:17 +01:00
parent 64c7395768
commit ed51fe6921
5 changed files with 5 additions and 7835 deletions

View File

@ -139,20 +139,6 @@ function discoverVersion()
var fso, cf, vf, ln, s, m;
fso = new ActiveXObject("Scripting.FileSystemObject");
verCvs = "";
if (useCvsVer && fso.FileExists("..\\CVS\\Entries")) {
cf = fso.OpenTextFile("..\\CVS\\Entries", 1);
while (cf.AtEndOfStream != true) {
ln = cf.ReadLine();
s = new String(ln);
if (s.search(/^\/ChangeLog\//) != -1) {
var iDot = s.indexOf(".");
var iSlash = s.indexOf("/", iDot);
verCvs = "CVS" + s.substring(iDot + 1, iSlash);
break;
}
}
cf.Close();
}
cf = fso.OpenTextFile(configFile, 1);
if (compiler == "msvc")
versionFile = ".\\config.msvc";