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:
22 packages : ' '
33
44steps :
5+ - script : brew update
6+ displayName : ' Update Homebrew'
57 - script : |
68 brew install pkg-config \
79 autoconf \
@@ -23,11 +25,12 @@ steps:
2325 zlib \
2426 t1lib \
2527 gd \
26- libzip \
2728 gmp \
2829 tidyp \
2930 libxml2 \
3031 libxslt \
3132 postgresql
33+ # Make sure we don't get broken libzip 1.7.0
34+ brew upgrade libzip
3235 brew link icu4c gettext --force
3336 displayName: 'Install Build Dependencies'
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ PHP_ARG_WITH([zip],
44 [ Include Zip read/write support] ) ] )
55
66if 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 ] )
88
99 PHP_EVAL_INCLINE($LIBZIP_CFLAGS)
1010 PHP_EVAL_LIBLINE($LIBZIP_LIBS, ZIP_SHARED_LIBADD)
You can’t perform that action at this time.
0 commit comments