endaaman / tym

Lua-configurable terminal emulator
MIT License
185 stars 14 forks source link

bump lua version #67

Closed TorchedSammy closed 2 years ago

TorchedSammy commented 2 years ago

currently building on fedora takes a tiny bit of extra effort since lua in fedora 35 is 5.4 and not 5.3 i had to change lua53 in the configure to lua, so maybe you could push that also? or is there another way to fix this, i dont know much about stuff involving c

endaaman commented 2 years ago

@TorchedSammy

fad27053037e537bca61da9b8b4a42d4907c8335

I specified lua version as lua5.3 because Ubuntu's lua package provides only lua5.3 entry but does not lua.

I searched about PKG_CHECK_MODULES() again and found the way to set the condition, then it worked. So now you never think about lua version stuffs.

TorchedSammy commented 2 years ago

ok that works thanks!