diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-04-30 13:31:29 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-05-02 01:04:52 +0200 |
commit | 18e5293f6da32096545b39c8c997302b26e02593 (patch) | |
tree | 01e13d2188dfc65c88795ec6b00c307b9e83a50a /community/php7 | |
parent | 827fabf578ba2cb99c1c169b294db3603f46d2da (diff) | |
download | aports-18e5293f6da32096545b39c8c997302b26e02593.tar.bz2 aports-18e5293f6da32096545b39c8c997302b26e02593.tar.xz |
community/php7: disable gd-jis-conv
https://github.com/alpinelinux/aports/pull/893#discussion_r114062643
Diffstat (limited to 'community/php7')
-rw-r--r-- | community/php7/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/community/php7/APKBUILD b/community/php7/APKBUILD index ddddfb5505..4d2375899d 100644 --- a/community/php7/APKBUILD +++ b/community/php7/APKBUILD @@ -75,6 +75,8 @@ prepare() { autoconf } +# Notes: +# * gd-jis-conv breaks any non-latin font rendering (vakartel). _build() { [ "$CARCH" = "s390x" ] && _disable_pcre_jit="--without-pcre-jit" @@ -109,7 +111,7 @@ _build() { --enable-fileinfo=shared \ --enable-ftp=shared \ --with-gd=shared --with-webp-dir=shared --with-jpeg-dir=shared --with-png-dir=shared --with-xpm-dir=shared \ - --with-freetype-dir=shared --enable-gd-native-ttf --enable-gd-jis-conv \ + --with-freetype-dir=shared --enable-gd-native-ttf --disable-gd-jis-conv \ --with-gettext=shared \ --with-gmp=shared \ --with-iconv=shared \ |