Skip to content
Merged
Changes from all 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
7 changes: 3 additions & 4 deletions ocaml/xapi/check-no-lwtssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

SSL=libssl
CRYPTO=libcrypto
# This is an OCaml library, but when it is linked
# we also configure it to link libev, so look for that
LWT=libev
DEPS="${SSL}|${CRYPTO}|${LWT}"
# For now do not check for libev/Lwt,
# we need to fix ocaml-xenstore-clients and tar.unix first
DEPS="${SSL}|${CRYPTO}"

ldd "$1" | grep -q -E "${DEPS}" 2>&1
if [ $? -eq 1 ]; then
Expand Down
Loading