Skip to content

Commit 896c8f6

Browse files
committed
Fix soap module build for PHP 7.4
1 parent 7f71dd2 commit 896c8f6

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Dockerfiles/mods/Dockerfile-7.4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -622,8 +622,8 @@ RUN set -eux \
622622
RUN set -eux \
623623
# Installation: Version specific
624624
# Type: Built-in extension
625-
# Default: configure command
626-
&& docker-php-ext-configure soap --with-libxml-dir=/usr \
625+
# Custom: configure command
626+
&& docker-php-ext-configure soap --enable-soap \
627627
# Installation
628628
&& docker-php-ext-install -j$(getconf _NPROCESSORS_ONLN) soap \
629629
&& true

build/ansible/group_vars/all/mods.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,6 +1096,7 @@ extensions_available:
10961096
soap:
10971097
7.4:
10981098
type: builtin
1099+
configure: --enable-soap
10991100
all:
11001101
type: builtin
11011102
configure: --with-libxml-dir=/usr

0 commit comments

Comments
 (0)