We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76ca6bf commit a07cc19Copy full SHA for a07cc19
azure/macos/brew.yml
@@ -2,6 +2,8 @@ parameters:
2
packages: ''
3
4
steps:
5
+ - script: brew update
6
+ displayName: 'Update Homebrew'
7
- script: |
8
brew install pkg-config \
9
autoconf \
ext/zip/php_zip.c
@@ -31,6 +31,10 @@
31
#include "zend_interfaces.h"
32
#include "php_zip.h"
33
34
+#ifndef LIBZIP_VERSION_MAJOR
35
+# error You are likely using libzip 1.7.0, which is badly broken. Update to libzip 1.7.1
36
+#endif
37
+
38
/* zip_open is a macro for renaming libzip zipopen, so we need to use PHP_NAMED_FUNCTION */
39
static PHP_NAMED_FUNCTION(zif_zip_open);
40
static PHP_NAMED_FUNCTION(zif_zip_read);
0 commit comments