From 52e29a1e65e63544d1d601b23560c82a38a662e4 Mon Sep 17 00:00:00 2001 From: Alex Orlenko Date: Tue, 5 Nov 2019 14:55:05 +0000 Subject: [PATCH] Make upper version of LuaJIT unbounded (fix build on the latest ubuntu) --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index 8c095eb..800dc24 100644 --- a/build.rs +++ b/build.rs @@ -151,7 +151,7 @@ fn main() { #[cfg(feature = "luajit")] { 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"); match lua {