diff options
author | Alex Dowad <alexinbeijing@gmail.com> | 2020-07-04 23:52:32 +0200 |
---|---|---|
committer | Alex Dowad <alexinbeijing@gmail.com> | 2020-08-31 23:17:58 +0200 |
commit | 62317d592fd6e6df34e68214c9277a979c898de6 (patch) | |
tree | c924f50690f41daed021c8ea65276a2983e71c2f /ext/mbstring/php_unicode.c | |
parent | b7808d02e874faee6b90fac9e856736d7f8e05b2 (diff) | |
download | php-git-62317d592fd6e6df34e68214c9277a979c898de6.tar.gz |
Remove redundant includes from mbstring (and make sure correct config.h is used)
Very interesting... it turns out that when Valgrind support was enabled,
`#include "config.h"` from within mbstring was actually including the file "config.h"
from Valgrind, and not the one from mbstring!!
This is because -I/usr/include/valgrind was added to the compiler invocation _before_
-Iext/mbstring/libmbfl.
Make sure we actually include the file which was intended.
Diffstat (limited to 'ext/mbstring/php_unicode.c')
-rw-r--r-- | ext/mbstring/php_unicode.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ext/mbstring/php_unicode.c b/ext/mbstring/php_unicode.c index 37a996b8be..c96d9b7180 100644 --- a/ext/mbstring/php_unicode.c +++ b/ext/mbstring/php_unicode.c @@ -28,12 +28,7 @@ all copies or substantial portions of the Software. */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - #include "php.h" -#include "php_ini.h" #ifdef HAVE_MBSTRING |