diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2006-11-03 20:08:38 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2006-11-03 20:08:38 +0000 |
| commit | 6516d8e1d6440f83f8556e164e8a73fb66d465ae (patch) | |
| tree | ba9b3c00428e6db0b251bb4a3a297befe20dab34 | |
| parent | 4f3889d5bf8236758812c93777e4318e0598e3c8 (diff) | |
| download | php-git-6516d8e1d6440f83f8556e164e8a73fb66d465ae.tar.gz | |
Fixed bug #39358 (INSTALL_HEADERS contains incorrect reference to
php_filter.h)
| -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 |
