diff options
author | Michael Maroszek <maroszek@gmx.net> | 2019-05-27 17:42:20 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-05-27 17:42:20 +0200 |
commit | a0c9d0849aa5e53c37f8fd68db80412364e8edaf (patch) | |
tree | f39c23175031c6f53a0cce155183aabe0c507a6a | |
parent | 8baf3ffde6211c9373ac7f812c2095b2a6426f78 (diff) | |
download | php-git-a0c9d0849aa5e53c37f8fd68db80412364e8edaf.tar.gz |
Fixed bug #76345
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | ext/zip/config.m4 | 3 |
2 files changed, 5 insertions, 1 deletions
@@ -18,6 +18,9 @@ PHP NEWS . Fixed bug #78038 (Socket_select fails when resource array contains references). (Nikita) +- Zip: + . Fixed bug #76345 (zip.h not found). (Michael Maroszek) + 30 May 2019, PHP 7.2.19 - FPM: diff --git a/ext/zip/config.m4 b/ext/zip/config.m4 index dc34cbf694..58c78538a8 100644 --- a/ext/zip/config.m4 +++ b/ext/zip/config.m4 @@ -118,7 +118,8 @@ if test "$PHP_ZIP" != "no"; then ]) AC_DEFINE(HAVE_ZIP,1,[ ]) - PHP_NEW_EXTENSION(zip, php_zip.c zip_stream.c, $ext_shared,, $LIBZIP_CFLAGS) + PHP_EVAL_INCLINE($LIBZIP_CFLAGS) + PHP_NEW_EXTENSION(zip, php_zip.c zip_stream.c, $ext_shared) PHP_SUBST(ZIP_SHARED_LIBADD) else AC_MSG_WARN(========================================================) |