mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
66 lines
1.1 KiB
Bash
Executable File
66 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
if [[ "$ENABLE_MAINTAINER_ZTS" == 1 ]]; then
|
|
TS="--enable-maintainer-zts";
|
|
else
|
|
TS="";
|
|
fi
|
|
if [[ "$ENABLE_DEBUG" == 1 ]]; then
|
|
DEBUG="--enable-debug";
|
|
else
|
|
DEBUG="";
|
|
fi
|
|
./buildconf --force
|
|
./configure --quiet \
|
|
$DEBUG \
|
|
$TS \
|
|
--enable-phpdbg \
|
|
--enable-fpm \
|
|
--with-pdo-mysql=mysqlnd \
|
|
--with-mysqli=mysqlnd \
|
|
--with-pgsql \
|
|
--with-pdo-pgsql \
|
|
--with-pdo-sqlite \
|
|
--enable-intl \
|
|
--without-pear \
|
|
--with-gd \
|
|
--with-jpeg-dir=/usr \
|
|
--with-png-dir=/usr \
|
|
--enable-exif \
|
|
--enable-zip \
|
|
--with-zlib \
|
|
--with-zlib-dir=/usr \
|
|
--with-mcrypt=/usr \
|
|
--enable-soap \
|
|
--enable-xmlreader \
|
|
--with-xsl \
|
|
--with-curl=/usr \
|
|
--with-tidy \
|
|
--with-xmlrpc \
|
|
--enable-sysvsem \
|
|
--enable-sysvshm \
|
|
--enable-shmop \
|
|
--enable-pcntl \
|
|
--with-readline \
|
|
--enable-mbstring \
|
|
--with-curl \
|
|
--with-gettext \
|
|
--enable-sockets \
|
|
--with-bz2 \
|
|
--with-openssl \
|
|
--with-gmp \
|
|
--enable-bcmath \
|
|
--enable-calendar \
|
|
--enable-ftp \
|
|
--with-pspell=/usr \
|
|
--with-enchant=/usr \
|
|
--enable-wddx \
|
|
--with-imap \
|
|
--with-imap-ssl \
|
|
--with-freetype-dir=/usr \
|
|
--with-t1lib=/usr \
|
|
--with-xpm-dir=/usr \
|
|
--with-kerberos \
|
|
--enable-sysvmsg
|
|
make -j2 --quiet
|
|
sudo make install
|