-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
nghttp2_jll.jl
45 lines (37 loc) · 1.33 KB
/
nghttp2_jll.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# This file is a part of Julia. License is MIT: https://julialang.org/license
## dummy stub for https://github.com/JuliaBinaryWrappers/nghttp2_jll.jl
baremodule nghttp2_jll
using Base, Libdl
Base.Experimental.@compiler_options compile=min optimize=0 infer=false
const PATH_list = String[]
const LIBPATH_list = String[]
export libnghttp2
# These get calculated in __init__()
PATH = Ref("")
LIBPATH = Ref("")
artifact_dir = ""
libnghttp2_handle = C_NULL
libnghttp2_path = ""
if Sys.iswindows()
const libnghttp2 = "libnghttp2-14.dll"
elseif Sys.isapple()
const libnghttp2 = "@rpath/libnghttp2.14.dylib"
else
const libnghttp2 = "libnghttp2.so.14"
end
function __init__()
global libnghttp2_handle = dlopen(libnghttp2)
global libnghttp2_path = dlpath(libnghttp2_handle)
global artifact_dir = dirname(Sys.BINDIR)
global LIBPATH[] = dirname(libnghttp2_path)
push!(LIBPATH_list, LIBPATH[])
end
# JLLWrappers API compatibility shims. Note that not all of these will really make sense.
# For instance, `find_artifact_dir()` won't actually be the artifact directory, because
# there isn't one. It instead returns the overall Julia prefix.
is_available() = true
find_artifact_dir() = artifact_dir
dev_jll() = error("stdlib JLLs cannot be dev'ed")
best_wrapper = nothing
get_libnghttp2_path() = libnghttp2_path
end # module nghttp2_jll