From 7fe9addcbc54ffc08a8488434c021b1d35c57dd0 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Sun, 13 Feb 2022 23:29:51 +0100 Subject: Remove CVS and SVN-related code --- win32/configure.js | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'win32') diff --git a/win32/configure.js b/win32/configure.js index 8f03b464..d784f3bf 100644 --- a/win32/configure.js +++ b/win32/configure.js @@ -180,20 +180,6 @@ function discoverVersion() var fso, cf, vf, ln, s, iDot, iSlash; 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) { - iDot = s.indexOf("."); - 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"; -- cgit v1.2.1