Não é possível compilar o PHP 5.6 no Debian 8

0

Eu quero instalar o PHP 5.6 no Debian Jessie e estou seguindo os procedimentos listado nesta página (o servidor está usando o ISPConfig e eu quero adicionar esta versão do PHP à lista de versões do PHP disponíveis).

Quando eu corro:

./configure --prefix=/opt/php-5.6 --with-pdo-pgsql --with-zlib-dir --with-freetype-dir --enable-mbstring --with-libxml-dir=/usr --enable-soap --enable-calendar --with-curl --with-mcrypt --with-zlib --with-pgsql --disable-rpath --enable-inline-optimization --with-bz2 --with-zlib --enable-sockets --enable-sysvsem --enable-sysvshm --enable-pcntl --enable-mbregex --enable-exif --enable-bcmath --with-mhash --enable-zip --with-pcre-regex --with-pdo-mysql --with-mysqli --with-mysql-sock=/var/run/mysqld/mysqld.sock --with-jpeg-dir=/usr --with-png-dir=/usr --enable-gd-native-ttf --with-openssl=/opt/openssl --with-fpm-user=www-data --with-fpm-group=www-data --with-libdir=/lib/x86_64-linux-gnu --enable-ftp --with-kerberos --with-gettext --with-xmlrpc --with-xsl --enable-opcache --enable-fpm

Eu recebo o seguinte erro:

checking for GNU gettext support... yes
checking for bindtextdomain in -lintl... no
checking for bindtextdomain in -lc... no
configure: error: Unable to find required gettext library

A coisa é que tenho gettext instalado e não sei como continuar com isso. Qualquer feedback seria muito apreciado.

    
por Mike Alvim 12.03.2018 / 10:18

1 resposta

2

Verifique se você instalou os seguintes pacotes:

# apt-get install libxml2-dev libz-dev libbz2-dev libcurl4-openssl-dev libmcrypt-dev libpq-dev libxslt-dev

Eu tentei o comando de configuração dentro de um contêiner do Docker [1] e o comando foi concluído com êxito. Mente

  • a alteração no comando ./configure : --with-openssl=/opt/openssl foi removido
  • a ausência de gettext package

[1] Dockerfile para configurar o PHP 5.6 no Debian Jessie (as diretivas são divididas para enfatizar a ordem de cada pacote requerido, mas uma forma condensada [2] teria o mesmo trabalho)

FROM debian:jessie                                                                                                                                                                         

RUN apt-get update

RUN apt-get install -y wget

RUN wget http://de2.php.net/get/php-5.6.33.tar.bz2/from/this/mirror -O php-5.6.33.tar.bz2

RUN apt-get install -y bzip2

RUN tar jxf ./php-5.6.33.tar.bz2

RUN apt-get install -y gcc

RUN apt-get install -y libxml2-dev

RUN apt-get install -y libz-dev

RUN apt-get install -y libbz2-dev

RUN apt-get install -y libcurl4-openssl-dev

RUN apt-get install -y libmcrypt-dev

RUN apt-get install -y libpq-dev

RUN apt-get install -y libxslt-dev

RUN cd php-5.6.33 && ./configure --prefix=/opt/php-5.6 --with-pdo-pgsql --with-zlib-dir --with-freetype-dir --enable-mbstring --with-libxml-dir=/usr --enable-soap --enable-calendar --with-curl --with-mcrypt --with-zlib --with-pgsql --disable-rpath --enable-inline-optimization --with-bz2 --with-zlib --enable-sockets --enable-sysvsem --enable-sysvshm --enable-pcntl --enable-mbregex --enable-exif --enable-bcmath --with-mhash --enable-zip --with-pcre-regex --with-pdo-mysql --with-mysqli --with-mysql-sock=/var/run/mysqld/mysqld.sock --with-jpeg-dir=/usr --with-png-dir=/usr --enable-gd-native-ttf --with-fpm-user=www-data --with-fpm-group=www-data --with-libdir=/lib/x86_64-linux-gnu --enable-ftp --with-kerberos --with-gettext --with-xmlrpc --with-xsl --enable-opcache --enable-fpm

[2] Dockerfile condensado para configurar o PHP 5.6 no Debian Jessie

FROM debian:jessie                                                                                                                                                                         

RUN apt-get update && \
  apt-get install -y wget bzip2 gcc libxml2-dev libz-dev libbz2-dev libcurl4-openssl-dev libmcrypt-dev libpq-dev libxslt-dev && \
  wget http://de2.php.net/get/php-5.6.33.tar.bz2/from/this/mirror -O php-5.6.33.tar.bz2 && \
  tar jxf ./php-5.6.33.tar.bz2 && \
  cd php-5.6.33 && ./configure --prefix=/opt/php-5.6 --with-pdo-pgsql --with-zlib-dir --with-freetype-dir --enable-mbstring --with-libxml-dir=/usr --enable-soap --enable-calendar --with-curl --with-mcrypt --with-zlib --with-pgsql --disable-rpath --enable-inline-optimization --with-bz2 --with-zlib --enable-sockets --enable-sysvsem --enable-sysvshm --enable-pcntl --enable-mbregex --enable-exif --enable-bcmath --with-mhash --enable-zip --with-pcre-regex --with-pdo-mysql --with-mysqli --with-mysql-sock=/var/run/mysqld/mysqld.sock --with-jpeg-dir=/usr --with-png-dir=/usr --enable-gd-native-ttf --with-fpm-user=www-data --with-fpm-group=www-data --with-libdir=/lib/x86_64-linux-gnu --enable-ftp --with-kerberos --with-gettext --with-xmlrpc --with-xsl --enable-opcache --enable-fpm
    
por 12.03.2018 / 16:17