From 1c4c01b2395f487aec0e5b63f55e376dd6f900f5 Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Mon, 15 Jan 2018 11:45:31 -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()`. --- src/BinaryBuilder.jl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/BinaryBuilder.jl b/src/BinaryBuilder.jl index 54bb125b5..9e44e9f1b 100644 --- a/src/BinaryBuilder.jl +++ b/src/BinaryBuilder.jl @@ -4,6 +4,10 @@ module BinaryBuilder using Compat using Reexport + +if VERSION >= v"0.7.0-DEV.3382" + import Libdl +end @reexport using BinaryProvider include("Auditor.jl")