diff options
| -rw-r--r-- | NEWS | 2 | ||||
| -rw-r--r-- | ext/filter/config.m4 | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -5,6 +5,8 @@ PHP NEWS . Fixed a bug when callback function returns a non-modified value. . Added filter support for $_SERVER in cgi/apache2 sapis. . Make sure PHP_SELF is filtered in Apache 1 sapi. + . Fixed bug #39358 (INSTALL_HEADERS contains incorrect reference to + php_filter.h). - Fixed bug #39361 (Removed warning on empty haystack inside mb_strstr()). (Ilia) - Fixed bug #39354 (Allow building of curl extension against libcurl 7.16.0) diff --git a/ext/filter/config.m4 b/ext/filter/config.m4 index 0db0375e26..b125c7e20c 100644 --- a/ext/filter/config.m4 +++ b/ext/filter/config.m4 @@ -91,5 +91,5 @@ yes PHP_NEW_EXTENSION(filter, filter.c sanitizing_filters.c logical_filters.c callback_filter.c, $ext_shared) PHP_SUBST(FILTER_SHARED_LIBADD) - PHP_INSTALL_HEADERS([$ext_srcdir/php_filter.h]) + PHP_INSTALL_HEADERS([ext/filter/php_filter.h]) fi |
