ZeroMQ Webサイトに従って、以下のShellコマンドを実行して、PHP-ZMQをインストールしました。
Sudo pear channel-discover pear.zero.mq
Sudo pecl install pear.zero.mq/zmq-beta
以下は、インストールのトレースです。
downloading zmq-1.0.6.tgz ...
Starting to download zmq-1.0.6.tgz (23,880 bytes)
........done: 23,880 bytes
10 source files, building
running: phpize
Configuring for:
PHP Api Version: 20090626
Zend Module Api No: 20090626
Zend Extension Api No: 220090626
building in /var/tmp/pear-build-rootwCcLwT/zmq-1.0.6
running: /var/tmp/zmq/configure
checking for egrep... grep -E
checking for a sed that does not truncate output... /bin/sed
checking for cc... cc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ANSI C... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... x86_64-redhat-linux-gnu
checking Host system type... x86_64-redhat-linux-gnu
checking target system type... x86_64-redhat-linux-gnu
checking for PHP prefix... /usr
checking for PHP includes... -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib
checking for PHP extension directory... /usr/lib64/php/modules
checking for PHP installed headers prefix... /usr/include/php
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... no
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
checking for gawk... gawk
checking whether to enable 0MQ support... yes, shared
checking for pkg-config... /usr/bin/pkg-config
checking libzmq installation... configure: error: Unable to find libzmq installation
ERROR: `/var/tmp/zmq/configure' failed
CentOS 5
サーバーにlibzmq
経由でYum
を既にインストールしています。
以下を実行して確認することもできます
yum install zeromq
および以下のトレース:
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirror.site.net.au
* extras: mirror.site.net.au
* updates: mirror.site.net.au
Setting up Install Process
Package zeromq-3.2.2-13.1.x86_64 already installed and latest version
Package zeromq-3.2.2-13.1.i386 already installed and latest version
Nothing to do
libzmq
がインストールされているので、PHP-ZMQ
がインストール時にエラーをスローしている理由がわかりません。
これの原因は何でしょうか?
開発ファイルが必要です。それらはzeromq-develまたはRPMベースのディストリビューションではそのようなものと呼ばれていると思います。
Brew経由でCZMQをインストールすると、これが解決しました。
この問題を抱えている将来の人のために-私はこれから指示されたようにこれを試しました ZeroMQ --Sudo pecl install zmq-beta
私のMacで。それから私は@TinusGuichelaarの指示に従って試しました-brew install czmq
。それは多くの失敗した解決策の後で機能しました!