Compilando PHP 5.3 em Debian Jessie

De MochilaWiki
Ir para navegaçãoIr para pesquisar

baixando dependencias

apt-get build-dep php5

compilando

mkdir -p /opt/php-5.3.29/etc/pool.d
mkdir /usr/local/src/php5-build; cd $_
wget http://pub.nkosi.org/php-5.3.29/php-5.3.29.tar.bz2
tar jxvf php-5.3.29.tar.bz2
cd php-5.3.29/
./configure --prefix=/opt/php-5.3.29 --with-zlib-dir --enable-mbstring --with-xmlrpc --with-xsl \
--with-libxml-dir=/usr --enable-soap --enable-calendar --with-curl --with-mcrypt --with-zlib --with-gd \
--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-mysql \
--with-pdo-mysql --with-mysqli --with-jpeg-dir=/usr --with-png-dir=/usr --enable-gd-native-ttf --with-openssl \
--with-fpm-user=www-data --with-fpm-group=www-data --with-libdir=/lib/x86_64-linux-gnu --enable-ftp --enable-fpm \
--with-kerberos --with-gettext
sed -i '107s/-lcrypt/-lssl -lcrypto/g' Makefile
make
make install

configurações

cp /usr/local/src/php5-build/php-5.3.29/php.ini-production /opt/php-5.3.29/lib/php.ini
cp /opt/php-5.3.29/etc/php-fpm.conf.default /opt/php-5.3.29/etc/php-fpm.conf
wget http://pub.nkosi.org/php-5.3.29/php-5.3.29.service
mv php-5.3.29.service /lib/systemd/system
systemctl enable php-5.3.29.service
systemctl start php-5.3.29.service

Referências