aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2016-08-09 21:35:38 +0200
committerPascal Quantin <pascal.quantin@gmail.com>2016-08-09 20:32:55 +0000
commit2227c26cb696eb264cd8ecddc48398c6c5afd57b (patch)
tree18804229093a84c31a692a4b919d0c2321a844f2 /tools
parente812c0e384ff7e8ae17c9ec681f3aba0416b3615 (diff)
Windows: upgrade Lua library to 5.2.4
Change-Id: Ib0a4afc9b6143cf5ff78f72f0808f9f804549dd9 Reviewed-on: https://code.wireshark.org/review/16979 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/win-setup.ps18
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/win-setup.ps1 b/tools/win-setup.ps1
index 63fc5772de..166447fc02 100644
--- a/tools/win-setup.ps1
+++ b/tools/win-setup.ps1
@@ -101,8 +101,8 @@ Param(
# trouble instead of trying to catch exceptions everywhere.
$ErrorActionPreference = "Stop"
-$Win64CurrentTag = "2016-08-03"
-$Win32CurrentTag = "2016-08-03"
+$Win64CurrentTag = "2016-08-09"
+$Win32CurrentTag = "2016-08-09"
# Archive file / subdir.
$Win64Archives = @{
@@ -142,8 +142,8 @@ $Win32Archives = @{
# Lua
if ( @("14", "12", "11", "10") -contains $VSVersion ) {
- $Win64Archives["lua-5.2.3_Win64_dll$($VSVersion)_lib.zip"] = "lua5.2.3"
- $Win32Archives["lua-5.2.3_Win32_dll$($VSVersion)_lib.zip"] = "lua5.2.3"
+ $Win64Archives["lua-5.2.4_Win64_dll$($VSVersion)_lib.zip"] = "lua5.2.4"
+ $Win32Archives["lua-5.2.4_Win32_dll$($VSVersion)_lib.zip"] = "lua5.2.4"
}