1parameters:
2  configurationParameters: ''
3
4steps:
5- script: |
6    ./buildconf --force
7    ./configure ${{ parameters.configurationParameters }} \
8        --enable-option-checking=fatal \
9        --prefix=/usr \
10        --enable-phpdbg \
11        --enable-fpm \
12        --with-pdo-mysql=mysqlnd \
13        --with-mysqli=mysqlnd \
14        --with-pgsql \
15        --with-pdo-pgsql \
16        --with-pdo-sqlite \
17        --enable-intl \
18        --without-pear \
19        --enable-gd \
20        --with-jpeg \
21        --with-webp \
22        --with-freetype \
23        --with-xpm \
24        --enable-exif \
25        --with-zip \
26        --with-zlib \
27        --with-zlib-dir=/usr \
28        --enable-soap \
29        --enable-xmlreader \
30        --with-xsl \
31        --with-tidy \
32        --enable-sysvsem \
33        --enable-sysvshm \
34        --enable-shmop \
35        --enable-pcntl \
36        --with-readline \
37        --enable-mbstring \
38        --with-curl \
39        --with-gettext \
40        --enable-sockets \
41        --with-bz2 \
42        --with-openssl \
43        --with-gmp \
44        --enable-bcmath \
45        --enable-calendar \
46        --enable-ftp \
47        --with-pspell=/usr \
48        --with-enchant=/usr \
49        --with-kerberos \
50        --enable-sysvmsg \
51        --with-ffi \
52        --enable-zend-test \
53        --with-ldap \
54        --with-ldap-sasl \
55        --with-password-argon2 \
56        --with-mhash \
57        --with-sodium \
58        --enable-dba \
59        --with-snmp \
60        --with-unixODBC \
61        --with-imap \
62        --with-kerberos \
63        --with-imap-ssl \
64        --with-pdo-odbc=unixODBC,/usr \
65        --with-pdo-firebird \
66        --with-pdo-dblib \
67        --with-pdo-oci=shared,instantclient,/opt/oracle/instantclient \
68        --with-oci8=shared,instantclient,/opt/oracle/instantclient \
69        --enable-werror \
70        --with-config-file-path=/etc \
71        --with-config-file-scan-dir=/etc/php.d
72  displayName: 'Configure Build'
73