diff options
| author | Tjerk Meesters <datibbaw@php.net> | 2014-08-28 16:41:38 +0800 | 
|---|---|---|
| committer | Tjerk Meesters <datibbaw@php.net> | 2014-09-11 10:22:44 +0800 | 
| commit | 86de7963fe69638431c0aa8f413d25e01bf99d68 (patch) | |
| tree | 4560e915002400c61de33493fc1c06705e046679 /ext/mbstring/mbstring.c | |
| parent | e699f654f0c4b00fd4e915829842c43aa9c6f7b9 (diff) | |
| download | php-git-86de7963fe69638431c0aa8f413d25e01bf99d68.tar.gz | |
Removing ext/ereg and dependencies
Affected extensions:
- opcache (use pcre)
- mbstring (removed ereg functions overloading)
- pgsql (use pcre)
- reflection (test cases using 'ereg')
SAPI:
- apache (header only)
- apache_hooks (header only)
Diffstat (limited to 'ext/mbstring/mbstring.c')
| -rw-r--r-- | ext/mbstring/mbstring.c | 7 | 
1 files changed, 0 insertions, 7 deletions
diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c index 212c8d013f..965c6be356 100644 --- a/ext/mbstring/mbstring.c +++ b/ext/mbstring/mbstring.c @@ -204,13 +204,6 @@ static const struct mb_overload_def mb_ovld[] = {  	{MB_OVERLOAD_STRING, "strtolower", "mb_strtolower", "mb_orig_strtolower"},  	{MB_OVERLOAD_STRING, "strtoupper", "mb_strtoupper", "mb_orig_strtoupper"},  	{MB_OVERLOAD_STRING, "substr_count", "mb_substr_count", "mb_orig_substr_count"}, -#if HAVE_MBREGEX -	{MB_OVERLOAD_REGEX, "ereg", "mb_ereg", "mb_orig_ereg"}, -	{MB_OVERLOAD_REGEX, "eregi", "mb_eregi", "mb_orig_eregi"}, -	{MB_OVERLOAD_REGEX, "ereg_replace", "mb_ereg_replace", "mb_orig_ereg_replace"}, -	{MB_OVERLOAD_REGEX, "eregi_replace", "mb_eregi_replace", "mb_orig_eregi_replace"}, -	{MB_OVERLOAD_REGEX, "split", "mb_split", "mb_orig_split"}, -#endif  	{0, NULL, NULL, NULL}  };   /* }}} */  | 
