mirror of
https://github.com/danog/amp.git
synced 2024-11-26 20:15:00 +01:00
82835325d0
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.
11 lines
306 B
Bash
Executable File
11 lines
306 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
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 \
|
|
&& make \
|
|
&& make install \
|
|
&& popd \
|
|
&& echo "extension=event.so" >> "$(php -r 'echo php_ini_loaded_file();')";
|