diff options
author | Thijs Schreijer <thijs@thijsschreijer.nl> | 2015-07-01 23:14:34 +0200 |
---|---|---|
committer | Thijs Schreijer <thijs@thijsschreijer.nl> | 2015-07-01 23:14:34 +0200 |
commit | 6ca144cee96ef45d6a203455b236e4077dd37a03 (patch) | |
tree | 54b21f2b46291f64dfca4c9ae36928819053a693 /win32 | |
parent | 642be5cee59a20654226466f6f865e230c326751 (diff) | |
parent | 634ff0af63a250859863cee25b8ab21e2404a267 (diff) | |
download | luarocks-6ca144cee96ef45d6a203455b236e4077dd37a03.tar.gz luarocks-6ca144cee96ef45d6a203455b236e4077dd37a03.tar.bz2 luarocks-6ca144cee96ef45d6a203455b236e4077dd37a03.zip |
Merge branch 'master' of github.com:keplerproject/luarocks into pref_versioned
Conflicts:
src/luarocks/cfg.lua
Diffstat (limited to 'win32')
-rw-r--r-- | win32/pe-parser.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/win32/pe-parser.lua b/win32/pe-parser.lua index 6b3a48c8..9cd36ffc 100644 --- a/win32/pe-parser.lua +++ b/win32/pe-parser.lua | |||
@@ -5,7 +5,7 @@ | |||
5 | -- case of 64 bit fields (bit/flag fields). Pointer arithmetic is still done numerically, so for | 5 | -- case of 64 bit fields (bit/flag fields). Pointer arithmetic is still done numerically, so for |
6 | -- very large files this could lead to undefined results. Use with care! | 6 | -- very large files this could lead to undefined results. Use with care! |
7 | -- | 7 | -- |
8 | -- Version 0.3, [copyright (c) 2013-2015 Thijs Schreijer](http://www.thijsschreijer.nl) | 8 | -- Version 0.4, [copyright (c) 2013-2015 Thijs Schreijer](http://www.thijsschreijer.nl) |
9 | -- @name pe-parser | 9 | -- @name pe-parser |
10 | -- @class module | 10 | -- @class module |
11 | 11 | ||
@@ -532,6 +532,9 @@ function M.msvcrt(infile) | |||
532 | if not result then | 532 | if not result then |
533 | result = dll:match('(MSVCRTD?)%.DLL') | 533 | result = dll:match('(MSVCRTD?)%.DLL') |
534 | end | 534 | end |
535 | if not result then | ||
536 | result = dll:match('(VCRUNTIME%d*D?)%.DLL') | ||
537 | end | ||
535 | -- success, found it return name + binary where it was found | 538 | -- success, found it return name + binary where it was found |
536 | if result then return result, infile end | 539 | if result then return result, infile end |
537 | end | 540 | end |