Skip to content

Commit a0c9d08

Browse files
paresynikic
authored andcommitted
Fixed bug #76345
1 parent 8baf3ff commit a0c9d08

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
@@ -18,6 +18,9 @@ PHP NEWS
1818
. Fixed bug #78038 (Socket_select fails when resource array contains
1919
references). (Nikita)
2020

21+
- Zip:
22+
. Fixed bug #76345 (zip.h not found). (Michael Maroszek)
23+
2124
30 May 2019, PHP 7.2.19
2225

2326
- FPM:

ext/zip/config.m4

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

120120
AC_DEFINE(HAVE_ZIP,1,[ ])
121-
PHP_NEW_EXTENSION(zip, php_zip.c zip_stream.c, $ext_shared,, $LIBZIP_CFLAGS)
121+
PHP_EVAL_INCLINE($LIBZIP_CFLAGS)
122+
PHP_NEW_EXTENSION(zip, php_zip.c zip_stream.c, $ext_shared)
122123
PHP_SUBST(ZIP_SHARED_LIBADD)
123124
else
124125
AC_MSG_WARN(========================================================)

0 commit comments

Comments
 (0)