SpecialistOff.NET / Вопросы / Статьи / Фрагменты кода / Резюме / Метки / Помощь / Файлы

Список вопросов Печать

Сборка PHP 7


Метки: php apache http 

Ответы

RemiZOffAlex  Создано: 2016-11-14 20:19:10.131720  Обновлено: 2016-11-14 20:19:10.131720
yum install libmcrypt libmcrypt-devel libxslt libxslt-devel
./configure \
./configure \
    --with-apxs2 \
    --prefix=/usr/local/php7 \
    --with-config-file-path=/etc/php7/ \
    --with-config-file-scan-dir=/etc/php7/ \
    --with-curl=/usr/local/lib \
    --with-gd \
    --enable-gd-native-ttf \
    --with-gettext \
    --with-jpeg-dir=/usr/local/lib \
    --with-freetype-dir=/usr/local/lib \
    --with-libxml-dir=/usr/local/lib \
    --with-kerberos \
    --with-openssl \
    --with-mcrypt \
    --with-mhash \
    --with-mysql-sock=/var/lib/mysql/mysql.sock \
    --with-mysqli=mysqlnd \
    --with-pcre-regex=/usr \
    --with-pdo-mysql=mysqlnd \
    --with-pear \
    --with-png-dir=/usr/local/lib \
    --with-xsl \
    --with-zlib \
    --with-zlib-dir=/usr/local/lib \
    --enable-zip \
    --with-iconv \
    --with-iconv-dir=/usr/local/lib \
    --with-libdir=lib64 \
    --enable-bcmath \
    --enable-calendar \
    --enable-ftp \
    --enable-sockets \
    --enable-soap \
    --enable-mbstring \
    --with-icu-dir=/usr \
    --enable-intl
make
make install

Возможно будут интересны и другие вопросы