From 82835325d0c7e4fa09d37349678b1fb82ed0c6f1 Mon Sep 17 00:00:00 2001 From: Niklas Keller Date: Mon, 30 Apr 2018 22:47:14 +0200 Subject: [PATCH] Prevent ext-event 2.4.0RC1 and use 2.3.0 instead PHP 7.2 in combination with ext-event 2.4.0RC1 throws exceptions with invalid file descriptors, while everything works fine with 2.3.0 or PHP < 7.2. This is a temporary fix to get the build green again. Relates to #221. --- travis/install-event.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/install-event.sh b/travis/install-event.sh index 67c704c..f17ceb3 100755 --- a/travis/install-event.sh +++ b/travis/install-event.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -curl -LS https://pecl.php.net/get/event | tar -xz \ +curl -LS https://pecl.php.net/get/event-2.3.0 | tar -xz \ && pushd event-* \ && phpize \ && ./configure --with-event-core --with-event-extra --with-event-pthreads \