diff options
Diffstat (limited to 'ext/mbstring/mbstring.h')
-rw-r--r-- | ext/mbstring/mbstring.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/ext/mbstring/mbstring.h b/ext/mbstring/mbstring.h index 1393559f8e..7f94db15ad 100644 --- a/ext/mbstring/mbstring.h +++ b/ext/mbstring/mbstring.h @@ -76,10 +76,6 @@ #define PHP_MBSTRING_API 20021024 -#if HAVE_MBREGEX -#include "php_mbregex.h" -#endif - extern zend_module_entry mbstring_module_entry; #define mbstring_module_ptr &mbstring_module_entry @@ -197,8 +193,8 @@ ZEND_BEGIN_MODULE_GLOBALS(mbstring) long strict_detection; long illegalchars; mbfl_buffer_converter *outconv; -#if HAVE_MBREGEX && defined(PHP_MBREGEX_GLOBALS) - PHP_MBREGEX_GLOBALS +#if HAVE_MBREGEX + struct _zend_mb_regex_globals *mb_regex_globals; #endif ZEND_END_MODULE_GLOBALS(mbstring) |