Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions 5.6/alpine3.4/cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ ENV PHPIZE_DEPS \
gcc \
libc-dev \
make \
pcre-dev \
pkgconf \
re2c
RUN apk add --no-cache --virtual .persistent-deps \
Expand Down Expand Up @@ -124,9 +123,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
\
$PHP_EXTRA_CONFIGURE_ARGS \
&& make -j "$(nproc)" \
Expand Down
7 changes: 3 additions & 4 deletions 5.6/alpine3.4/fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ ENV PHPIZE_DEPS \
gcc \
libc-dev \
make \
pcre-dev \
pkgconf \
re2c
RUN apk add --no-cache --virtual .persistent-deps \
Expand Down Expand Up @@ -125,9 +124,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
\
$PHP_EXTRA_CONFIGURE_ARGS \
&& make -j "$(nproc)" \
Expand Down
7 changes: 3 additions & 4 deletions 5.6/alpine3.4/zts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ ENV PHPIZE_DEPS \
gcc \
libc-dev \
make \
pcre-dev \
pkgconf \
re2c
RUN apk add --no-cache --virtual .persistent-deps \
Expand Down Expand Up @@ -125,9 +124,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
\
$PHP_EXTRA_CONFIGURE_ARGS \
&& make -j "$(nproc)" \
Expand Down
7 changes: 3 additions & 4 deletions 5.6/jessie/apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ ENV PHPIZE_DEPS \
g++ \
gcc \
libc-dev \
libpcre3-dev \
make \
pkg-config \
re2c
Expand Down Expand Up @@ -192,9 +191,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
--with-libdir="lib/$debMultiarch" \
\
$PHP_EXTRA_CONFIGURE_ARGS \
Expand Down
7 changes: 3 additions & 4 deletions 5.6/jessie/cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ ENV PHPIZE_DEPS \
g++ \
gcc \
libc-dev \
libpcre3-dev \
make \
pkg-config \
re2c
Expand Down Expand Up @@ -133,9 +132,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
--with-libdir="lib/$debMultiarch" \
\
$PHP_EXTRA_CONFIGURE_ARGS \
Expand Down
7 changes: 3 additions & 4 deletions 5.6/jessie/fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ ENV PHPIZE_DEPS \
g++ \
gcc \
libc-dev \
libpcre3-dev \
make \
pkg-config \
re2c
Expand Down Expand Up @@ -134,9 +133,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
--with-libdir="lib/$debMultiarch" \
\
$PHP_EXTRA_CONFIGURE_ARGS \
Expand Down
7 changes: 3 additions & 4 deletions 5.6/jessie/zts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ ENV PHPIZE_DEPS \
g++ \
gcc \
libc-dev \
libpcre3-dev \
make \
pkg-config \
re2c
Expand Down Expand Up @@ -134,9 +133,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
--with-libdir="lib/$debMultiarch" \
\
$PHP_EXTRA_CONFIGURE_ARGS \
Expand Down
7 changes: 3 additions & 4 deletions 7.0/alpine3.4/cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ ENV PHPIZE_DEPS \
gcc \
libc-dev \
make \
pcre-dev \
pkgconf \
re2c
RUN apk add --no-cache --virtual .persistent-deps \
Expand Down Expand Up @@ -124,9 +123,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
\
$PHP_EXTRA_CONFIGURE_ARGS \
&& make -j "$(nproc)" \
Expand Down
7 changes: 3 additions & 4 deletions 7.0/alpine3.4/fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ ENV PHPIZE_DEPS \
gcc \
libc-dev \
make \
pcre-dev \
pkgconf \
re2c
RUN apk add --no-cache --virtual .persistent-deps \
Expand Down Expand Up @@ -125,9 +124,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
\
$PHP_EXTRA_CONFIGURE_ARGS \
&& make -j "$(nproc)" \
Expand Down
7 changes: 3 additions & 4 deletions 7.0/alpine3.4/zts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ ENV PHPIZE_DEPS \
gcc \
libc-dev \
make \
pcre-dev \
pkgconf \
re2c
RUN apk add --no-cache --virtual .persistent-deps \
Expand Down Expand Up @@ -125,9 +124,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
\
$PHP_EXTRA_CONFIGURE_ARGS \
&& make -j "$(nproc)" \
Expand Down
7 changes: 3 additions & 4 deletions 7.0/jessie/apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ ENV PHPIZE_DEPS \
g++ \
gcc \
libc-dev \
libpcre3-dev \
make \
pkg-config \
re2c
Expand Down Expand Up @@ -192,9 +191,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
--with-libdir="lib/$debMultiarch" \
\
$PHP_EXTRA_CONFIGURE_ARGS \
Expand Down
7 changes: 3 additions & 4 deletions 7.0/jessie/cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ ENV PHPIZE_DEPS \
g++ \
gcc \
libc-dev \
libpcre3-dev \
make \
pkg-config \
re2c
Expand Down Expand Up @@ -133,9 +132,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
--with-libdir="lib/$debMultiarch" \
\
$PHP_EXTRA_CONFIGURE_ARGS \
Expand Down
7 changes: 3 additions & 4 deletions 7.0/jessie/fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ ENV PHPIZE_DEPS \
g++ \
gcc \
libc-dev \
libpcre3-dev \
make \
pkg-config \
re2c
Expand Down Expand Up @@ -134,9 +133,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
--with-libdir="lib/$debMultiarch" \
\
$PHP_EXTRA_CONFIGURE_ARGS \
Expand Down
7 changes: 3 additions & 4 deletions 7.0/jessie/zts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ ENV PHPIZE_DEPS \
g++ \
gcc \
libc-dev \
libpcre3-dev \
make \
pkg-config \
re2c
Expand Down Expand Up @@ -134,9 +133,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
--with-libdir="lib/$debMultiarch" \
\
$PHP_EXTRA_CONFIGURE_ARGS \
Expand Down
7 changes: 3 additions & 4 deletions 7.1/alpine3.4/cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ ENV PHPIZE_DEPS \
gcc \
libc-dev \
make \
pcre-dev \
pkgconf \
re2c
RUN apk add --no-cache --virtual .persistent-deps \
Expand Down Expand Up @@ -124,9 +123,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
\
$PHP_EXTRA_CONFIGURE_ARGS \
&& make -j "$(nproc)" \
Expand Down
7 changes: 3 additions & 4 deletions 7.1/alpine3.4/fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ ENV PHPIZE_DEPS \
gcc \
libc-dev \
make \
pcre-dev \
pkgconf \
re2c
RUN apk add --no-cache --virtual .persistent-deps \
Expand Down Expand Up @@ -125,9 +124,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
\
$PHP_EXTRA_CONFIGURE_ARGS \
&& make -j "$(nproc)" \
Expand Down
7 changes: 3 additions & 4 deletions 7.1/alpine3.4/zts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ ENV PHPIZE_DEPS \
gcc \
libc-dev \
make \
pcre-dev \
pkgconf \
re2c
RUN apk add --no-cache --virtual .persistent-deps \
Expand Down Expand Up @@ -125,9 +124,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
\
$PHP_EXTRA_CONFIGURE_ARGS \
&& make -j "$(nproc)" \
Expand Down
7 changes: 3 additions & 4 deletions 7.1/jessie/apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ ENV PHPIZE_DEPS \
g++ \
gcc \
libc-dev \
libpcre3-dev \
make \
pkg-config \
re2c
Expand Down Expand Up @@ -192,9 +191,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
--with-libdir="lib/$debMultiarch" \
\
$PHP_EXTRA_CONFIGURE_ARGS \
Expand Down
7 changes: 3 additions & 4 deletions 7.1/jessie/cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ ENV PHPIZE_DEPS \
g++ \
gcc \
libc-dev \
libpcre3-dev \
make \
pkg-config \
re2c
Expand Down Expand Up @@ -133,9 +132,9 @@ RUN set -xe \
--with-openssl \
--with-zlib \
\
# bundled pcre is too old for s390x (which isn't exactly a good sign)
# /usr/src/php/ext/pcre/pcrelib/pcre_jit_compile.c:65:2: error: #error Unsupported architecture
--with-pcre-regex=/usr \
# bundled pcre does not support JIT on s390x
# https://manpages.debian.org/stretch/libpcre3-dev/pcrejit.3.en.html#AVAILABILITY_OF_JIT_SUPPORT
$(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') \
--with-libdir="lib/$debMultiarch" \
\
$PHP_EXTRA_CONFIGURE_ARGS \
Expand Down
Loading