Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[open62541] Add OpenSSL encryption, update Julia compat and increase version number (1.4.0) #7889

Merged
merged 22 commits into from
Apr 18, 2024
Merged
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions O/open62541/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
using BinaryBuilder, Pkg

name = "open62541"
version = v"1.3.9"
version = v"1.4.0"

# Collection of sources required to complete build
sources = [
GitSource("https://github.com/open62541/open62541.git",
"70ff3501ddecd7e7594ebc63e2365994d59e010d")
"84347820c8550b5750f2cd581c14ab201611c579")
]

# Bash recipe for building across all platforms
Expand All @@ -23,7 +23,7 @@ cmake -DCMAKE_INSTALL_PREFIX=${prefix} \
-DUA_ENABLE_METHODCALLS=ON \
-DUA_ENABLE_PARSING=ON \
-DUA_ENABLE_NODEMANAGEMENT=ON \
-DUA_ENABLE_AMALGAMATION=ON \
-DUA_ENABLE_ENCRYPTION=OPENSSL \
-DUA_ENABLE_IMMUTABLE_NODES=ON \
-DUA_ENABLE_HISTORIZING=ON \
-DBUILD_SHARED_LIBS=ON \
Expand All @@ -44,7 +44,9 @@ products = [
]

# Dependencies that must be installed before this package can be built
dependencies = Dependency[
dependencies = [
Dependency("OpenSSL_jll"; compat="3.0.8"),
HostBuildDependency("OpenSSL_jll"; compat="3.0.8")
thomvet marked this conversation as resolved.
Show resolved Hide resolved
]

# Build the tarballs, and possibly a `build.jl` as well.
Expand Down