File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ parameters:
2
2
packages : ' '
3
3
4
4
steps :
5
+ - script : brew update
6
+ displayName : ' Update Homebrew'
5
7
- script : |
6
8
brew install pkg-config \
7
9
autoconf \
@@ -23,11 +25,12 @@ steps:
23
25
zlib \
24
26
t1lib \
25
27
gd \
26
- libzip \
27
28
gmp \
28
29
tidyp \
29
30
libxml2 \
30
31
libxslt \
31
32
postgresql
33
+ # Make sure we don't get broken libzip 1.7.0
34
+ brew upgrade libzip
32
35
brew link icu4c gettext --force
33
36
displayName: 'Install Build Dependencies'
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ PHP_ARG_WITH([zip],
4
4
[ Include Zip read/write support] ) ] )
5
5
6
6
if test "$PHP_ZIP" != "no"; then
7
- PKG_CHECK_MODULES([ LIBZIP] , [ libzip >= 0.11] )
7
+ PKG_CHECK_MODULES([ LIBZIP] , [ libzip >= 0.11 libzip != 1.3.1 libzip != 1.7.0 ] )
8
8
9
9
PHP_EVAL_INCLINE($LIBZIP_CFLAGS)
10
10
PHP_EVAL_LIBLINE($LIBZIP_LIBS, ZIP_SHARED_LIBADD)
You can’t perform that action at this time.
0 commit comments