Skip to content

Commit 0bb28ee

Browse files
committed
OpenSSL_jll build 1.1.1+4
1 parent 02242c0 commit 0bb28ee

15 files changed

+16
-133
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "OpenSSL_jll"
22
uuid = "458c3c95-2e84-50aa-8efc-19380b2a3a95"
3-
version = "1.1.1+3"
3+
version = "1.1.1+4"
44

55
[deps]
66
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# `OpenSSL_jll.jl` (v1.1.1+3)
1+
# `OpenSSL_jll.jl` (v1.1.1+4)
22

3-
This is an autogenerated package constructed using [`BinaryBuilder.jl`](https://github.com/JuliaPackaging/BinaryBuilder.jl). The originating [`build_tarballs.jl`](https://github.com/JuliaPackaging/Yggdrasil/blob/5e7e6ce49e1cecd7096443e2b7d25fcd36b8e575/O/OpenSSL/build_tarballs.jl) script can be found on [`Yggdrasil`](https://github.com/JuliaPackaging/Yggdrasil/), the community build tree.
3+
This is an autogenerated package constructed using [`BinaryBuilder.jl`](https://github.com/JuliaPackaging/BinaryBuilder.jl). The originating [`build_tarballs.jl`](https://github.com/JuliaPackaging/Yggdrasil/blob/ff57c345793b674b51c5e4c30cd0f66703d0a059/O/OpenSSL/build_tarballs.jl) script can be found on [`Yggdrasil`](https://github.com/JuliaPackaging/Yggdrasil/), the community build tree.
44

55
For more details about JLL packages and how to use them, see `BinaryBuilder.jl` [documentation](https://juliapackaging.github.io/BinaryBuilder.jl/dev/jll/).
66

src/wrappers/aarch64-linux-gnu.jl

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ function __init__()
7474

7575
# Initialize PATH and LIBPATH environment variable listings
7676
global PATH_list, LIBPATH_list
77-
# Lastly, we need to add to LIBPATH_list the libraries provided by Julia
78-
append!(LIBPATH_list, [joinpath(Sys.BINDIR, Base.LIBDIR, "julia"), joinpath(Sys.BINDIR, Base.LIBDIR)])
7977
global libcrypto_path = normpath(joinpath(artifact_dir, libcrypto_splitpath...))
8078

8179
# Manually `dlopen()` this right now so that future invocations
@@ -97,12 +95,5 @@ function __init__()
9795
filter!(!isempty, unique!(PATH_list))
9896
filter!(!isempty, unique!(LIBPATH_list))
9997
global PATH = join(PATH_list, ':')
100-
global LIBPATH = join(LIBPATH_list, ':')
101-
102-
# Add each element of LIBPATH to our DL_LOAD_PATH (necessary on platforms
103-
# that don't honor our "already opened" trick)
104-
#for lp in LIBPATH_list
105-
# push!(DL_LOAD_PATH, lp)
106-
#end
107-
end # __init__()
98+
global LIBPATH = join(vcat(LIBPATH_list, [joinpath(Sys.BINDIR, Base.LIBDIR, "julia"), joinpath(Sys.BINDIR, Base.LIBDIR)]), ':')) end # __init__()
10899

src/wrappers/aarch64-linux-musl.jl

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ function __init__()
7474

7575
# Initialize PATH and LIBPATH environment variable listings
7676
global PATH_list, LIBPATH_list
77-
# Lastly, we need to add to LIBPATH_list the libraries provided by Julia
78-
append!(LIBPATH_list, [joinpath(Sys.BINDIR, Base.LIBDIR, "julia"), joinpath(Sys.BINDIR, Base.LIBDIR)])
7977
global libcrypto_path = normpath(joinpath(artifact_dir, libcrypto_splitpath...))
8078

8179
# Manually `dlopen()` this right now so that future invocations
@@ -97,12 +95,5 @@ function __init__()
9795
filter!(!isempty, unique!(PATH_list))
9896
filter!(!isempty, unique!(LIBPATH_list))
9997
global PATH = join(PATH_list, ':')
100-
global LIBPATH = join(LIBPATH_list, ':')
101-
102-
# Add each element of LIBPATH to our DL_LOAD_PATH (necessary on platforms
103-
# that don't honor our "already opened" trick)
104-
#for lp in LIBPATH_list
105-
# push!(DL_LOAD_PATH, lp)
106-
#end
107-
end # __init__()
98+
global LIBPATH = join(vcat(LIBPATH_list, [joinpath(Sys.BINDIR, Base.LIBDIR, "julia"), joinpath(Sys.BINDIR, Base.LIBDIR)]), ':')) end # __init__()
10899

src/wrappers/armv7l-linux-gnueabihf.jl

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ function __init__()
7474

7575
# Initialize PATH and LIBPATH environment variable listings
7676
global PATH_list, LIBPATH_list
77-
# Lastly, we need to add to LIBPATH_list the libraries provided by Julia
78-
append!(LIBPATH_list, [joinpath(Sys.BINDIR, Base.LIBDIR, "julia"), joinpath(Sys.BINDIR, Base.LIBDIR)])
7977
global libcrypto_path = normpath(joinpath(artifact_dir, libcrypto_splitpath...))
8078

8179
# Manually `dlopen()` this right now so that future invocations
@@ -97,12 +95,5 @@ function __init__()
9795
filter!(!isempty, unique!(PATH_list))
9896
filter!(!isempty, unique!(LIBPATH_list))
9997
global PATH = join(PATH_list, ':')
100-
global LIBPATH = join(LIBPATH_list, ':')
101-
102-
# Add each element of LIBPATH to our DL_LOAD_PATH (necessary on platforms
103-
# that don't honor our "already opened" trick)
104-
#for lp in LIBPATH_list
105-
# push!(DL_LOAD_PATH, lp)
106-
#end
107-
end # __init__()
98+
global LIBPATH = join(vcat(LIBPATH_list, [joinpath(Sys.BINDIR, Base.LIBDIR, "julia"), joinpath(Sys.BINDIR, Base.LIBDIR)]), ':')) end # __init__()
10899

src/wrappers/armv7l-linux-musleabihf.jl

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ function __init__()
7474

7575
# Initialize PATH and LIBPATH environment variable listings
7676
global PATH_list, LIBPATH_list
77-
# Lastly, we need to add to LIBPATH_list the libraries provided by Julia
78-
append!(LIBPATH_list, [joinpath(Sys.BINDIR, Base.LIBDIR, "julia"), joinpath(Sys.BINDIR, Base.LIBDIR)])
7977
global libcrypto_path = normpath(joinpath(artifact_dir, libcrypto_splitpath...))
8078

8179
# Manually `dlopen()` this right now so that future invocations
@@ -97,12 +95,5 @@ function __init__()
9795
filter!(!isempty, unique!(PATH_list))
9896
filter!(!isempty, unique!(LIBPATH_list))
9997
global PATH = join(PATH_list, ':')
100-
global LIBPATH = join(LIBPATH_list, ':')
101-
102-
# Add each element of LIBPATH to our DL_LOAD_PATH (necessary on platforms
103-
# that don't honor our "already opened" trick)
104-
#for lp in LIBPATH_list
105-
# push!(DL_LOAD_PATH, lp)
106-
#end
107-
end # __init__()
98+
global LIBPATH = join(vcat(LIBPATH_list, [joinpath(Sys.BINDIR, Base.LIBDIR, "julia"), joinpath(Sys.BINDIR, Base.LIBDIR)]), ':')) end # __init__()
10899

src/wrappers/i686-linux-gnu.jl

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ function __init__()
7474

7575
# Initialize PATH and LIBPATH environment variable listings
7676
global PATH_list, LIBPATH_list
77-
# Lastly, we need to add to LIBPATH_list the libraries provided by Julia
78-
append!(LIBPATH_list, [joinpath(Sys.BINDIR, Base.LIBDIR, "julia"), joinpath(Sys.BINDIR, Base.LIBDIR)])
7977
global libcrypto_path = normpath(joinpath(artifact_dir, libcrypto_splitpath...))
8078

8179
# Manually `dlopen()` this right now so that future invocations
@@ -97,12 +95,5 @@ function __init__()
9795
filter!(!isempty, unique!(PATH_list))
9896
filter!(!isempty, unique!(LIBPATH_list))
9997
global PATH = join(PATH_list, ':')
100-
global LIBPATH = join(LIBPATH_list, ':')
101-
102-
# Add each element of LIBPATH to our DL_LOAD_PATH (necessary on platforms
103-
# that don't honor our "already opened" trick)
104-
#for lp in LIBPATH_list
105-
# push!(DL_LOAD_PATH, lp)
106-
#end
107-
end # __init__()
98+
global LIBPATH = join(vcat(LIBPATH_list, [joinpath(Sys.BINDIR, Base.LIBDIR, "julia"), joinpath(Sys.BINDIR, Base.LIBDIR)]), ':')) end # __init__()
10899

src/wrappers/i686-linux-musl.jl

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ function __init__()
7474

7575
# Initialize PATH and LIBPATH environment variable listings
7676
global PATH_list, LIBPATH_list
77-
# Lastly, we need to add to LIBPATH_list the libraries provided by Julia
78-
append!(LIBPATH_list, [joinpath(Sys.BINDIR, Base.LIBDIR, "julia"), joinpath(Sys.BINDIR, Base.LIBDIR)])
7977
global libcrypto_path = normpath(joinpath(artifact_dir, libcrypto_splitpath...))
8078

8179
# Manually `dlopen()` this right now so that future invocations
@@ -97,12 +95,5 @@ function __init__()
9795
filter!(!isempty, unique!(PATH_list))
9896
filter!(!isempty, unique!(LIBPATH_list))
9997
global PATH = join(PATH_list, ':')
100-
global LIBPATH = join(LIBPATH_list, ':')
101-
102-
# Add each element of LIBPATH to our DL_LOAD_PATH (necessary on platforms
103-
# that don't honor our "already opened" trick)
104-
#for lp in LIBPATH_list
105-
# push!(DL_LOAD_PATH, lp)
106-
#end
107-
end # __init__()
98+
global LIBPATH = join(vcat(LIBPATH_list, [joinpath(Sys.BINDIR, Base.LIBDIR, "julia"), joinpath(Sys.BINDIR, Base.LIBDIR)]), ':')) end # __init__()
10899

src/wrappers/i686-w64-mingw32.jl

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ function __init__()
7474

7575
# Initialize PATH and LIBPATH environment variable listings
7676
global PATH_list, LIBPATH_list
77-
# Lastly, we need to add to LIBPATH_list the libraries provided by Julia
78-
append!(LIBPATH_list, [Sys.BINDIR, joinpath(Sys.BINDIR, Base.LIBDIR, "julia"), joinpath(Sys.BINDIR, Base.LIBDIR)])
7977
global libcrypto_path = normpath(joinpath(artifact_dir, libcrypto_splitpath...))
8078

8179
# Manually `dlopen()` this right now so that future invocations
@@ -97,12 +95,5 @@ function __init__()
9795
filter!(!isempty, unique!(PATH_list))
9896
filter!(!isempty, unique!(LIBPATH_list))
9997
global PATH = join(PATH_list, ';')
100-
global LIBPATH = join(LIBPATH_list, ';')
101-
102-
# Add each element of LIBPATH to our DL_LOAD_PATH (necessary on platforms
103-
# that don't honor our "already opened" trick)
104-
#for lp in LIBPATH_list
105-
# push!(DL_LOAD_PATH, lp)
106-
#end
107-
end # __init__()
98+
global LIBPATH = join(vcat(LIBPATH_list, [Sys.BINDIR, joinpath(Sys.BINDIR, Base.LIBDIR, "julia"), joinpath(Sys.BINDIR, Base.LIBDIR)]), ';')) end # __init__()
10899

src/wrappers/powerpc64le-linux-gnu.jl

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ function __init__()
7474

7575
# Initialize PATH and LIBPATH environment variable listings
7676
global PATH_list, LIBPATH_list
77-
# Lastly, we need to add to LIBPATH_list the libraries provided by Julia
78-
append!(LIBPATH_list, [joinpath(Sys.BINDIR, Base.LIBDIR, "julia"), joinpath(Sys.BINDIR, Base.LIBDIR)])
7977
global libcrypto_path = normpath(joinpath(artifact_dir, libcrypto_splitpath...))
8078

8179
# Manually `dlopen()` this right now so that future invocations
@@ -97,12 +95,5 @@ function __init__()
9795
filter!(!isempty, unique!(PATH_list))
9896
filter!(!isempty, unique!(LIBPATH_list))
9997
global PATH = join(PATH_list, ':')
100-
global LIBPATH = join(LIBPATH_list, ':')
101-
102-
# Add each element of LIBPATH to our DL_LOAD_PATH (necessary on platforms
103-
# that don't honor our "already opened" trick)
104-
#for lp in LIBPATH_list
105-
# push!(DL_LOAD_PATH, lp)
106-
#end
107-
end # __init__()
98+
global LIBPATH = join(vcat(LIBPATH_list, [joinpath(Sys.BINDIR, Base.LIBDIR, "julia"), joinpath(Sys.BINDIR, Base.LIBDIR)]), ':')) end # __init__()
10899

0 commit comments

Comments
 (0)