#---------------------------------------------------------------
ifndef LUA_VERSION
-LUAVER=5.4.3
+LUAVER=5.4.4
else
LUAVER=$(LUA_VERSION)
endif
# Location of LUA
#
# Original source needs to be obtained from:
-# http://www.lua.org/ftp/lua-5.4.3.tar.gz
+# http://www.lua.org/ftp/lua-5.4.4.tar.gz
#
# This build assumes that the LUA sources are located
# at the specified location. If they are actually elsewhere
else
cc = gcc -c
ld = gcc
-ifeq "$(MSYSTEM)" "MINGW64"
-rc = windres --target=pe-x86-64
-else # MINGW32
+ifeq "$(MSYSTEM)" "MINGW32"
rc = windres --target=pe-i386
+else # MINGW32
+rc = windres --target=pe-x86-64
endif
endif
#===============-=================================================
# LUA library
-# Source from http://www.lua.org/ftp/lua-5.4.3.tar.gz
+# Source from http://www.lua.org/ftp/lua-5.4.4.tar.gz
#=================================================================
OLUA = $(O)lua
#endif
#define inmap(x, vk) (((x) > 'A' && (x) < 'Z') || (vk) == 0xBF || (x) == '2')
-const struct pad {
+struct pad {
uchar normal, shift, cntrl;
};