This commit is contained in:
Michael Maroszek 2019-05-27 17:42:20 +02:00 committed by Nikita Popov
parent 8baf3ffde6
commit a0c9d0849a
2 changed files with 5 additions and 1 deletions

3
NEWS
View file

@ -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:

View file

@ -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(========================================================)