-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fedora 30 build error #205
Comments
Similar error on docker image: FROM php:7.3.10-fpm
RUN apt-get install --yes libzmq3-dev
RUN pecl install zmq-beta
RUN docker-php-ext-enable zmq had to install zmq from master branch #200 FROM php:7.3.10-fpm
RUN apt-get install --yes git libzmq3-dev
RUN git clone git://github.com/mkoppanen/php-zmq.git \
&& cd php-zmq \
&& phpize && ./configure \
&& make \
&& make install \
&& cd .. \
&& rm -fr php-zmq
RUN docker-php-ext-enable zmq |
Same error appears on Arch Linux when trying to install php-zmq from AUR https://aur.archlinux.org/packages/php-zmq/ |
If anyone tries to use the config from god1dog above, remove the \ at the end of 2nd last line. |
Fixed the message, thanks @andres101 |
Thank you guys so much! @god1dog @andres101 Was searching al morning to install zmq on my php docker image and this worked great! |
@god1dog Thank you! |
I believe this is related to PHP 7.3, I was upgrading my stack from 7.2 to 7.3 and it failed with that error message. |
Thank you so much! @god1dog @andres101 ! This help for me. Build basic on php:7.4.26-apache. |
Trying to install zmq with
sudo pecl install zmq-beta
on Fedora, I face the following error:The text was updated successfully, but these errors were encountered: