diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-01-11 14:15:18 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-01-15 10:15:05 +0100 |
commit | 19d8a6b771a1d8d458583772703a5bb1a1276274 (patch) | |
tree | de863df986e5c50056d43d434855bcc5fba1d183 /travis | |
parent | 61d00c0c55ebbc2fa59af35befd2f61a80571675 (diff) | |
download | php-git-19d8a6b771a1d8d458583772703a5bb1a1276274.tar.gz |
Migrate ext/gd to pkg-config
* --with-webp-dir becomes --with-webp
* --with-jpeg-dir becomes --with-jpeg
* --with-png-dir is removed. libpng is required.
* --with-zlib-dir is removed. zlib is required.
* --with-xpm-dir becomes --with-xpm.
We also enable --with-webp on Travis.
Diffstat (limited to 'travis')
-rwxr-xr-x | travis/compile.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/travis/compile.sh b/travis/compile.sh index 5de9ed8446..dd930b0254 100755 --- a/travis/compile.sh +++ b/travis/compile.sh @@ -41,8 +41,10 @@ $TS \ --enable-intl \ --without-pear \ --with-gd \ ---with-jpeg-dir=/usr \ ---with-png-dir=/usr \ +--with-jpeg \ +--with-webp \ +--with-freetype \ +--with-xpm \ --enable-exif \ --enable-zip \ --with-zlib \ @@ -70,8 +72,6 @@ $TS \ --with-pspell=/usr \ --with-enchant=/usr \ --enable-wddx \ ---with-freetype \ ---with-xpm-dir=/usr \ --with-kerberos \ --enable-sysvmsg \ --enable-zend-test \ |