web-dev-qa-db-ja.com

Fedora 16にpecl経由でstompをインストールできませんでした(OpenSSLのライブラリが見つかりません)

Fedora16サーバーにpecl経由でstompphp拡張機能をインストールしようとしています。 CentOSでも同様の問題が発生しますが、openssl-develをインストールした後、すべてがうまくいき、stompをインストールしました。 Fedoraサーバー(openssl、openssl-develがインストールされている)では、次のようになります。


pecl install stomp
downloading stomp-1.0.4.tgz ...
Starting to download stomp-1.0.4.tgz (18,354 bytes)
......done: 18,354 bytes
6 source files, building
running: phpize
Configuring for:
PHP Api Version:         20090626
Zend Module Api No:      20090626
Zend Extension Api No:   220090626
OpenSSL install prefix (no to disable SSL support) [/usr] : /usr
building in /var/tmp/pear-build-root2Uodkk/stomp-1.0.4
running: /var/tmp/stomp/configure --with-openssl-dir=/usr
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking for cc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
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 ISO C89... 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-unknown-linux-gnu
checking Host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-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... re2c
checking for re2c version... 0.13.5 (ok)
checking for gawk... gawk
checking whether to enable stomp support... yes, shared
checking OpenSSL dir for stomp... /usr
checking for pkg-config... /usr/bin/pkg-config
configure: error: Cannot find OpenSSL's libraries
ERROR: `/var/tmp/stomp/configure --with-openssl-dir=/usr' failed
  

私が最初に考えたopenSSLのインストールプレフィックスは間違っていますが、同じプレフィックスがcentosで問題なく機能しましたか?

Opensslphp拡張機能もインストールしています。

編集:いくつかの詳細情報:

PHPバージョン=> 5.3.18

php-pear-1.9.4

インストールされているPHPモジュール:Gd gettext gmp hash iconv imap json ldap libxml mbstring mcrypt memcache mhash mongo mysql mysqli openssl pcntl pcre PDO pdo_mysql pdo_sqlite Phar readline Reflection session shmop SimpleXML soap sockets SPL sqlite3 standard tidy tokenizer wddx xapian xml xmlread

多分私は何かを忘れています。適切なopensslとopenssl-develがインストールされているため、どうすればよいかわかりません。何か案は?

2
B14D3

Opensslが予期された/ usrにないが、システム全体で到達可能なシステムにstomp拡張機能(peclを使用)を正しくインストールするには、ライブラリを検索するためのフォルダーを指定する代わりに、「yes」と入力します。

参照: https://bugs.php.net/bug.php?id=63935

これにより、システムはシステムのデフォルトを見つけるように強制されます。

手動コンパイルを使用する場合は、その後に「=」も追加するのではなく、「-with-openssl」と記述してください。

参照: https://bugs.php.net/bug.php?id=25703&edit=2

4
Luis Ferro

CentOS6.3および

openssl-1.0.0-25.el6_3.1.x86_64 openssl-devel-1.0.0-25.el6_3.1.x86_64

Pecl install stompがエラーをスローした場合は、/ usr/libディレクトリにリンクを作成する必要がある場合があります。

checking for pkg-config... /usr/bin/pkg-config
configure: error: Cannot find OpenSSL's libraries
ERROR: `/var/tmp/stomp/configure --with-openssl-dir=/usr' failed

克服する人形のレシピ

# Handle pecl install error on x86_64 CentOS 6.3
  if $architecture == 'x86_64' {
    file {'/usr/lib/libssl.so':
      ensure  => link,
      target  => '/usr/lib64/libssl.so',
      require => Package['openssl', 'openssl-devel'],
      before  => Exec['install_pecl_stomp'],
    }
    file {'/usr/lib/libcrypto.so':
      ensure  => link,
      target  => '/usr/lib64/libcrypto.so',
      require => Package['openssl', 'openssl-devel'],
      before  => Exec['install_pecl_stomp'],
    }
    $pecl_lib_dir = 'lib64'
  } else {
    $pecl_lib_dir = 'lib'
  }

  exec {'install_pecl_stomp':
    command => 'printf "/usr" | pecl install stomp',
    creates => "/usr/${pecl_lib_dir}/php/modules/stomp.so",
    require => Package['php', 'openssl', 'openssl-devel'],
  }
0
earthgecko