Назад | Перейти на главную страницу

Не удалось установить Stomp через pecl на Fedora 16 (не удается найти библиотеки OpenSSL)

Я пытаюсь установить расширение PHP через pecl на сервере Fedora 16. На 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 ??

У меня также установлено расширение openssl php.

РЕДАКТИРОВАТЬ: дополнительная информация:

Версия PHP => 5.3.18

PHP-груша-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 Сеанс отражения shmop SimpleXML, xapi, xapi, xapi, xapi, zdliteizer, xapi, xapi, xapitizer, xapi, xapi, xapi, xapi, xapi, стандартного xapi, xapi, zidml, xapreader, xapi, xapi, xapi, xapi.

Может я о чем-то забываю. Не знаю, что делать, потому что установлены правильные openssl и openssl-devel. Любые идеи?

Чтобы правильно установить расширение Stamp (с pecl) в системах, где openssl не находится в ожидаемом / usr, но, тем не менее, доступен для всей системы, вместо указания папки для поиска библиотек просто введите «yes».

ссылка: https://bugs.php.net/bug.php?id=63935

Это заставит систему найти систему по умолчанию.

Если вы используете ручную компиляцию, просто укажите «--with-openssl» вместо добавления «=» после него:

ссылка: https://bugs.php.net/bug.php?id=25703&edit=2

В случае CentOS 6.3 и

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

Возможно, вам придется создать ссылки в каталоге / usr / lib, если pecl install stampp выдает ошибку:

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'],
  }