Opam: use the libev backend of Lwt.

This commit is contained in:
Grégoire Henry 2017-03-31 16:54:50 +02:00
parent 852ba95a3c
commit 24b5290a74
3 changed files with 2 additions and 5 deletions

View File

@ -4,7 +4,7 @@ LABEL distro_style="apk" distro="alpine" distro_long="alpine-$alpine_version" ar
RUN apk update && \ RUN apk update && \
apk upgrade && \ apk upgrade && \
apk add sudo bash libssl1.0 libsodium gmp git && \ apk add sudo bash libssl1.0 libsodium libev gmp git && \
rm -f /var/cache/apk/* && \ rm -f /var/cache/apk/* && \
adduser -S tezos && \ adduser -S tezos && \
echo 'tezos ALL=(ALL:ALL) NOPASSWD:ALL' > /etc/sudoers.d/tezos && \ echo 'tezos ALL=(ALL:ALL) NOPASSWD:ALL' > /etc/sudoers.d/tezos && \

View File

@ -15,6 +15,7 @@ depends: [
"ocamlfind" {build} "ocamlfind" {build}
"base-bigarray" "base-bigarray"
"base-threads" "base-threads"
"conf-libev"
"calendar" "calendar"
"cohttp" {>= "0.21" } "cohttp" {>= "0.21" }
"conduit" "conduit"

View File

@ -7,10 +7,6 @@
(* *) (* *)
(**************************************************************************) (**************************************************************************)
(** HACK waiting for Pierre.... *)
let () = Lwt_unix.set_default_async_method Async_none
(** END OF HACK waiting for Pierre.... *)
module LC = Lwt_condition module LC = Lwt_condition
open Lwt.Infix open Lwt.Infix