2019-08-28 02:54:50 +08:00
|
|
|
parameters:
|
|
|
|
configurationParameters: ''
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- script: |
|
|
|
|
./buildconf --force
|
|
|
|
./configure ${{ parameters.configurationParameters }} \
|
|
|
|
--enable-option-checking=fatal \
|
|
|
|
--prefix=/usr \
|
|
|
|
--enable-phpdbg \
|
|
|
|
--enable-fpm \
|
|
|
|
--with-pdo-mysql=mysqlnd \
|
|
|
|
--with-mysqli=mysqlnd \
|
|
|
|
--with-pgsql \
|
|
|
|
--with-pdo-pgsql \
|
|
|
|
--with-pdo-sqlite \
|
|
|
|
--enable-intl \
|
|
|
|
--without-pear \
|
|
|
|
--enable-gd \
|
|
|
|
--with-jpeg \
|
|
|
|
--with-webp \
|
|
|
|
--with-freetype \
|
|
|
|
--with-xpm \
|
|
|
|
--enable-exif \
|
|
|
|
--with-zip \
|
|
|
|
--with-zlib \
|
|
|
|
--with-zlib-dir=/usr \
|
|
|
|
--enable-soap \
|
|
|
|
--enable-xmlreader \
|
|
|
|
--with-xsl \
|
|
|
|
--with-tidy \
|
|
|
|
--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 \
|
|
|
|
--with-kerberos \
|
|
|
|
--enable-sysvmsg \
|
|
|
|
--with-ffi \
|
|
|
|
--enable-zend-test \
|
|
|
|
--with-ldap \
|
|
|
|
--with-ldap-sasl \
|
|
|
|
--with-password-argon2 \
|
2019-09-17 22:16:31 +08:00
|
|
|
--with-mhash \
|
2020-02-24 18:00:58 +08:00
|
|
|
--with-sodium \
|
2020-06-23 18:43:23 +08:00
|
|
|
--enable-dba \
|
2020-09-09 16:04:16 +08:00
|
|
|
--with-snmp \
|
2020-09-17 16:44:26 +08:00
|
|
|
--with-unixODBC \
|
2020-09-17 23:22:01 +08:00
|
|
|
--with-imap \
|
|
|
|
--with-kerberos \
|
|
|
|
--with-imap-ssl \
|
2020-12-21 23:26:10 +08:00
|
|
|
--with-pdo-odbc=unixODBC,/usr \
|
2020-12-22 01:45:08 +08:00
|
|
|
--with-pdo-firebird \
|
2021-01-12 10:46:41 +08:00
|
|
|
--with-pdo-dblib \
|
2021-01-14 23:24:29 +08:00
|
|
|
--with-pdo-oci=shared,instantclient,/opt/oracle/instantclient \
|
|
|
|
--with-oci8=shared,instantclient,/opt/oracle/instantclient \
|
2019-08-28 02:54:50 +08:00
|
|
|
--enable-werror \
|
|
|
|
--with-config-file-path=/etc \
|
|
|
|
--with-config-file-scan-dir=/etc/php.d
|
|
|
|
displayName: 'Configure Build'
|