mirror of
https://github.com/danog/php.git
synced 2025-01-22 04:51:20 +01:00
Explicitly enable "mbstring" by default (since certain pecl bits cannot work properly otherwise)
This commit is contained in:
parent
27a370a6b7
commit
b694d2529d
@ -64,6 +64,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -66,6 +66,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -77,6 +77,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -65,6 +65,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -67,6 +67,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -65,6 +65,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -67,6 +67,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -64,6 +64,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -66,6 +66,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -77,6 +77,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -65,6 +65,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -67,6 +67,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -65,6 +65,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -67,6 +67,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -64,6 +64,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -66,6 +66,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -77,6 +77,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -65,6 +65,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -67,6 +67,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -65,6 +65,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -67,6 +67,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -66,6 +66,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
@ -64,6 +64,8 @@ RUN set -xe \
|
||||
--disable-cgi \
|
||||
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
|
||||
--enable-mysqlnd \
|
||||
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
|
||||
--enable-mbstring \
|
||||
--with-curl \
|
||||
--with-libedit \
|
||||
--with-openssl \
|
||||
|
Loading…
x
Reference in New Issue
Block a user