Skip to content

Commit dda07d2

Browse files
author
David Coutadeur
committed
fix missing sasl dependency (#1008)
1 parent 146da2a commit dda07d2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

packaging/docker/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ ARG BUILD_DEPS=" \
4848
libjpeg62-turbo-dev \
4949
libwebp-dev \
5050
libldap2-dev \
51+
libsasl2-dev \
5152
"
5253
RUN --mount=type=cache,target=/var/lib/apt/lists \
5354
set -ex; \
@@ -59,7 +60,7 @@ RUN --mount=type=cache,target=/var/lib/apt/lists \
5960
\
6061
docker-php-source extract; \
6162
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; \
62-
docker-php-ext-configure ldap --with-libdir=lib/$(uname -m)-linux-gnu/; \
63+
docker-php-ext-configure ldap --with-ldap-sasl --with-libdir=lib/$(uname -m)-linux-gnu/; \
6364
docker-php-ext-install -j "$(nproc)" \
6465
bcmath \
6566
bz2 \

packaging/docker/Dockerfile.alpine

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ RUN --mount=type=cache,target=/var/cache/apk \
9191
libjpeg-turbo-dev \
9292
libwebp-dev \
9393
openldap-dev \
94+
cyrus-sasl-dev \
9495
argon2-dev \
9596
coreutils \
9697
curl-dev \
@@ -170,6 +171,7 @@ RUN --mount=type=cache,target=/var/cache/apk \
170171
--enable-gd --with-freetype --with-jpeg --with-webp \
171172
--with-bz2 \
172173
--with-ldap \
174+
--with-ldap-sasl \
173175
--with-apxs2 \
174176
; \
175177
make -j "$(nproc)"; \

0 commit comments

Comments
 (0)