lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


I should have noticed this earlier, but the Version field in lua.pc
should have the full Lua version (5.1.0) rather than the major version
(5.1).  According to the pkg-config manual, Version should be the most
specific version available.  Software may want to check if the installed
Lua library has a certain bug fix level, for example (assuming a 5.1.1
release):

  pkg-config --exists 'lua >= 5.1.1 lua < 5.2.0'


--John