Make upper version of LuaJIT unbounded (fix build on the latest ubuntu)

This commit is contained in:
Alex Orlenko 2019-11-05 14:55:05 +00:00
parent 27a17dfaa8
commit 52e29a1e65
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ fn main() {
#[cfg(feature = "luajit")] #[cfg(feature = "luajit")]
{ {
let lua = pkg_config::Config::new() let lua = pkg_config::Config::new()
.range_version((Bound::Included("2.0.5"), Bound::Excluded("2.1.0"))) .range_version((Bound::Included("2.0.5"), Bound::Unbounded))
.probe("luajit"); .probe("luajit");
match lua { match lua {