diff options
author | Frank M. Kromann <fmk@php.net> | 2005-12-08 19:43:53 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2005-12-08 19:43:53 +0000 |
commit | c443a8d20bb0ef897b59b961e66f2543febbb43a (patch) | |
tree | 68dd8d810164092f308b061b2fe910009be8c11c /ext | |
parent | ec64cbb4e20d0d2d343c914c6c8b2a5e4912c6fa (diff) | |
download | php-git-c443a8d20bb0ef897b59b961e66f2543febbb43a.tar.gz |
Allow the extension to be compiled as shared object on win32
Diffstat (limited to 'ext')
-rw-r--r-- | ext/filter/filter.c | 1 | ||||
-rw-r--r-- | ext/filter/php_filter.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/ext/filter/filter.c b/ext/filter/filter.c index eb8a7016e1..35407ce215 100644 --- a/ext/filter/filter.c +++ b/ext/filter/filter.c @@ -24,7 +24,6 @@ #endif #include "php_filter.h" -#include "Zend/zend_API.h" ZEND_DECLARE_MODULE_GLOBALS(filter) diff --git a/ext/filter/php_filter.h b/ext/filter/php_filter.h index c3f40c7382..fc99cbdb52 100644 --- a/ext/filter/php_filter.h +++ b/ext/filter/php_filter.h @@ -23,6 +23,7 @@ #define PHP_FILTER_H #include "SAPI.h" +#include "zend_API.h" #include "php.h" #include "php_ini.h" #include "ext/standard/info.h" |