summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2015-06-09 18:13:08 +0000
committerDart Raiden <wowemuh@gmail.com>2015-06-09 18:13:08 +0000
commitab1f58186c48e8033c370e8d2ebfd8656d47c44e (patch)
tree8c73f4af23b506ae9c3c03bcd33b68a54db51c76
parentf2bc6761680a9f7fca23eb68331570b734aa682f (diff)
l[gen.js: delete old and non actual filters
git-svn-id: http://svn.miranda-ng.org/main/trunk@14084 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--tools/lpgen/lpgen.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lpgen/lpgen.js b/tools/lpgen/lpgen.js
index 717a9f725e..43c1961577 100644
--- a/tools/lpgen/lpgen.js
+++ b/tools/lpgen/lpgen.js
@@ -109,8 +109,8 @@ sln_stream=FSO.GetFile(slnfile).OpenAsTextStream(ForReading, TristateUseDefault)
sln_project_regexp=slnline.match(/(?:Project\(\"\{[\w\d-]+\}\"\)\x20+\=\x20+\"(.+?)\",\x20*?\"\.\.)(\\(:?plugins|protocols).*vcxproj)(?=",)/i);
// if exist sln_project_regexp, add to array, adding leading path to "trunk"
if (sln_project_regexp) {
- //RegExp for unneeded modules, such as crypting library, mimcmd.exe, zlib.dll etc.
- var unneeded_modules=/(Zlib|RC4|EkHtml|Libgcrypt|Libotr|Cryptlib|MimCmd|Dbx_tree_ARC4|Dbx_tree_Cast128|Dbx_tree_HC256|pu_stub|libcurl|glib)/i;
+ //RegExp for unneeded modules, such as crypting library, zlib.dll etc.
+ var unneeded_modules=/(Zlib|RC4|EkHtml|Libgcrypt|Libotr|Cryptlib|pu_stub|libcurl|glib)/i;
// Now check for unneeded modules NOT passed (module name are in sln_project_regexp[1]
if (!unneeded_modules.test(sln_project_regexp[1]))
//no, this is not unneeded module, put path to array. Trunk path + path to file in sln_project_regexp[2]