Skip to content

Commit 6f3fa84

Browse files
committed
Updated Lua 5.4 to Lua 5.5 where needed.
1 parent 140b2a2 commit 6f3fa84

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

BUILD.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ with `git submodules init` then `git submodules update --recursive`.
1414
#### Website archive
1515
If Git is not available in the development environment,
1616
then Lua sources can be acquired from https://lua.org/ftp.
17-
Download any 5.4 version of the tarball sources and extract them.
17+
Download any 5.5 version of the tarball sources and extract them.
1818
Then copy the contents inside the extracted `src` folder
1919
into the projects `lua` folder.
2020

pe.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ BEGIN
77
BEGIN
88
BLOCK "040904E4"
99
BEGIN
10-
VALUE "FileVersion", "5.4.8\0"
11-
VALUE "ProductVersion", "5.4.8\0"
10+
VALUE "FileVersion", "5.5.0\0"
11+
VALUE "ProductVersion", "5.5.0\0"
1212
VALUE "FileDescription", "Lua Programming Language Interpreter\0"
1313
VALUE "CompanyName", "PUC-Rio\0"
1414
VALUE "Website", "http://www.lua.org\0"

wm_dos16.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Watcom Makefile for building Lua 5.4
1+
# Watcom Makefile for building Lua 5.5
22
# This is the DOS 16-bit large model version
33
# There are no configurable parts to this file
44
# Run with `wmake -f mw_dos16.mak`

wm_dos4g.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Watcom Makefile for building Lua 5.4
1+
# Watcom Makefile for building Lua 5.5
22
# This is the DOS 4G flat model version
33
# There are no configurable parts to this file
44
# Run with `wmake -f wm_dos4g.mak`

wm_linux.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Watcom Makefile for building Lua 5.4
1+
# Watcom Makefile for building Lua 5.5
22
# This is the Linux version
33
# There are no configurable parts to this file
44
# Run with `wmake -f wm_linux.mak`

wm_os216.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Watcom Makefile for building Lua 5.4
1+
# Watcom Makefile for building Lua 5.5
22
# This is the OS/2 1.2 16-bit version
33
# There are no configurable parts to this file
44
# Run with `wmake -f wm_os216.mak`

wm_os232.mak

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Watcom Makefile for building Lua 5.4
1+
# Watcom Makefile for building Lua 5.5
22
# This is the OS/2 2.0 32-bit version
33
# There are no configurable parts to this file
44
# Run with `wmake -f wm_os232.mak`
55

66
CC = *wcc386
77

88
CFLAGS = -q -bt=os2 -bc -3 -d0 -osr -zc
9-
LFLAGS = SYS os2v2 OPT st=16384 OPT description \'Lua Programming Language Interpreter\' OPT version=5.4.8
9+
LFLAGS = SYS os2v2 OPT st=16384 OPT description \'Lua Programming Language Interpreter\' OPT version=5.5.0
1010

1111
PLATFORM = 22
1212
SUFFIX = .EXE

wm_winnt.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Watcom Makefile for building Lua 5.4
1+
# Watcom Makefile for building Lua 5.5
22
# This is the Windows 95 and later version
33
# There are no configurable parts to this file
44
# Run with `wmake -f wm_winnt.mak`

0 commit comments

Comments
 (0)