summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--ext/zip/config.m43
2 files changed, 5 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 7ddff4c431..21177f35c7 100644
--- a/NEWS
+++ b/NEWS
@@ -26,6 +26,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)
+
16 May 2019, PHP 7.3.6RC1
- cURL:
diff --git a/ext/zip/config.m4 b/ext/zip/config.m4
index 740e5a8b3d..c337012996 100644
--- a/ext/zip/config.m4
+++ b/ext/zip/config.m4
@@ -116,7 +116,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(========================================================)