Skip to content

Commit 6b1e449

Browse files
committed
Merge branch 'PHP-7.4'
2 parents 607567b + f3e6b12 commit 6b1e449

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

azure/macos/brew.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ parameters:
22
packages: ''
33

44
steps:
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'

ext/zip/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PHP_ARG_WITH([zip],
44
[Include Zip read/write support])])
55

66
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])
88

99
PHP_EVAL_INCLINE($LIBZIP_CFLAGS)
1010
PHP_EVAL_LIBLINE($LIBZIP_LIBS, ZIP_SHARED_LIBADD)

0 commit comments

Comments
 (0)