Skip to content

Commit

Permalink
deps(opam): Bump ssl version
Browse files Browse the repository at this point in the history
  • Loading branch information
erikmd committed Mar 6, 2022
1 parent 28ad355 commit 9d6da39
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion learn-ocaml-client.opam
Expand Up @@ -41,7 +41,7 @@ depends: [
"ppxlib"
"ppx_sexp_conv"
"ppx_tools"
"ssl" {= "0.5.5"}
"ssl" {= "0.5.10"}
"vg"
]
build: [
Expand Down
2 changes: 1 addition & 1 deletion learn-ocaml-client.opam.locked
Expand Up @@ -95,7 +95,7 @@ depends: [
"seq" {= "0.2.2"}
"sexplib" {= "v0.14.0"}
"sexplib0" {= "v0.14.0"}
"ssl" {= "0.5.5"}
"ssl" {= "0.5.10"}
"stdlib-shims" {= "0.3.0"}
"stringext" {= "1.6.0"}
"topkg" {= "1.0.3"}
Expand Down
2 changes: 1 addition & 1 deletion learn-ocaml.opam
Expand Up @@ -58,7 +58,7 @@ depends: [
"ppx_tools"
"ppx_tools_versioned"
"re"
"ssl" {= "0.5.5"}
"ssl" {= "0.5.10"}
"uutf" {>= "1.0" }
"vg"
"yojson" {>= "1.4.0" }
Expand Down
2 changes: 1 addition & 1 deletion learn-ocaml.opam.locked
Expand Up @@ -107,7 +107,7 @@ depends: [
"seq" {= "0.2.2"}
"sexplib" {= "v0.14.0"}
"sexplib0" {= "v0.14.0"}
"ssl" {= "0.5.5"}
"ssl" {= "0.5.10"}
"stdlib-shims" {= "0.3.0"}
"stringext" {= "1.6.0"}
"topkg" {= "1.0.3"}
Expand Down
4 changes: 2 additions & 2 deletions src/main/linking_flags.sh
Expand Up @@ -52,7 +52,7 @@ case $(uname -s) in
Linux)
case $(. /etc/os-release && echo $ID) in
alpine)
COMMON_LIBS="camlstr ssl_threads_stubs ssl crypto cstruct_stubs bigstringaf_stubs lwt_unix_stubs unix c"
COMMON_LIBS="camlstr ssl_stubs ssl crypto cstruct_stubs bigstringaf_stubs lwt_unix_stubs unix c"
# `m` and `pthread` are built-in musl
echo2 '(-noautolink'
echo2 ' -cclib -Wl,-Bstatic'
Expand All @@ -68,7 +68,7 @@ case $(uname -s) in
esac
;;
Darwin)
COMMON_LIBS="camlstr ssl_threads_stubs /usr/local/opt/openssl/lib/libssl.a /usr/local/opt/openssl/lib/libcrypto.a cstruct_stubs bigstringaf_stubs lwt_unix_stubs unix"
COMMON_LIBS="camlstr ssl_stubs /usr/local/opt/openssl/lib/libssl.a /usr/local/opt/openssl/lib/libcrypto.a cstruct_stubs bigstringaf_stubs lwt_unix_stubs unix"
# `m` and `pthread` are built-in in libSystem
echo2 '(-noautolink'
for l in $EXTRA_LIBS $COMMON_LIBS; do
Expand Down

0 comments on commit 9d6da39

Please sign in to comment.