From 0ae2146d977ffb97657b1bf092836ccf890de13d Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Mon, 15 Jan 2018 11:43:48 -0800 Subject: [PATCH] Explicitly import Libdl https://github.com/JuliaLang/julia/pull/25459 moved `Libdl` to the stdlib, which means that we need to explicitly import it now before we can do things like `Libdl.dlopen()`. --- deps/build.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deps/build.jl b/deps/build.jl index 80d6d71..e710313 100644 --- a/deps/build.jl +++ b/deps/build.jl @@ -1,4 +1,7 @@ using Compat +if VERSION >= v"0.7.0-DEV.3382" + import Libdl +end need_to_build_manually = true