Skip to content

Commit 0cb43ec

Browse files
committed
Merge branch 'PHP-7.2' into PHP-7.3
2 parents 31ce1cb + a0c9d08 commit 0cb43ec

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ PHP NEWS
2626
. Fixed bug #78038 (Socket_select fails when resource array contains
2727
references). (Nikita)
2828

29+
- Zip:
30+
. Fixed bug #76345 (zip.h not found). (Michael Maroszek)
31+
2932
16 May 2019, PHP 7.3.6RC1
3033

3134
- cURL:

ext/zip/config.m4

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ if test "$PHP_ZIP" != "no"; then
116116
])
117117

118118
AC_DEFINE(HAVE_ZIP,1,[ ])
119-
PHP_NEW_EXTENSION(zip, php_zip.c zip_stream.c, $ext_shared,, $LIBZIP_CFLAGS)
119+
PHP_EVAL_INCLINE($LIBZIP_CFLAGS)
120+
PHP_NEW_EXTENSION(zip, php_zip.c zip_stream.c, $ext_shared)
120121
PHP_SUBST(ZIP_SHARED_LIBADD)
121122
else
122123
AC_MSG_WARN(========================================================)

0 commit comments

Comments
 (0)