xref: /PHP-7.4/azure/configure.yml (revision 2d15845a)
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        --with-xmlrpc \
33        --enable-sysvsem \
34        --enable-sysvshm \
35        --enable-shmop \
36        --enable-pcntl \
37        --with-readline \
38        --enable-mbstring \
39        --with-curl \
40        --with-gettext \
41        --enable-sockets \
42        --with-bz2 \
43        --with-openssl \
44        --with-gmp \
45        --enable-bcmath \
46        --enable-calendar \
47        --enable-ftp \
48        --with-pspell=/usr \
49        --with-enchant=/usr \
50        --with-kerberos \
51        --enable-sysvmsg \
52        --with-ffi \
53        --enable-zend-test \
54        --with-ldap \
55        --with-ldap-sasl \
56        --with-password-argon2 \
57        --with-mhash \
58        --with-sodium \
59        --enable-werror \
60        --with-config-file-path=/etc \
61        --with-config-file-scan-dir=/etc/php.d
62  displayName: 'Configure Build'
63