Package: lua-curses / 1:9.0.0-3

Metadata

Package Version Patches format
lua-curses 1:9.0.0-3 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
fix include path.patch | (download)

ext/curses/window.c | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 give the full path in include
lua_strlen.patch | (download)

ext/curses.c | 7 6 + 1 - 0 !
ext/curses/chstr.c | 10 9 + 1 - 0 !
ext/curses/window.c | 8 7 + 1 - 0 !
3 files changed, 22 insertions(+), 3 deletions(-)

 fix some "implicit declaration" errors with gcc-15


lua 5.4.patch | (download)

ext/include/_helpers.c | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 [patch] add support for lua 5.4

_helpers.c is a copy from luaposix, and needs one trivial change for
compatibility with Lua 5.4.  luaposix added 5.4 support by appending
a `LUA_VERSION_NUM == 504` case to an existing #ifdef for 502 and 503.

I chose instead to change it to >= 502, to fix for this 5.4 and avoid
encountering this issue again with the next Lua update.