Skip to content

Instantly share code, notes, and snippets.

@intarstudents
Last active October 6, 2015 21:58
Show Gist options
  • Save intarstudents/3059278 to your computer and use it in GitHub Desktop.
Save intarstudents/3059278 to your computer and use it in GitHub Desktop.
Compiling ZeroMQ

Dependencies:

$ aptitude install libtool autoconf automake uuid-dev

Installation commands:

$ git clone https://github.com/zeromq/zeromq3-x.git
$ cd zeromq3-x/
$ ./autogen.sh 
$ ./configure
$ make
$ make install

PHP support:

$ git clone git://github.com/mkoppanen/php-zmq.git
$ cd php-zmq/
$ phpize && ./configure
$ make
$ make install

Update php.ini file:

; ZEROMQ
extension=zmq.so
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment