We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bebddbd commit 94ec5c2Copy full SHA for 94ec5c2
ext/mbstring/config.m4
@@ -34,10 +34,14 @@ AC_DEFUN([PHP_MBSTRING_EXTENSION], [
34
PHP_ADD_BUILD_DIR([$ext_builddir/$dir])
35
done
36
37
- if test "$ext_shared" = "no" -o ! -e "$ext_builddir/config.h.in"; then
+ if test "$ext_shared" = "no"; then
38
out="php_config.h"
39
else
40
- out="$abs_builddir/config.h"
+ if test -e "$ext_builddir/config.h.in"; then
41
+ out="$abs_builddir/config.h"
42
+ else
43
+ out="php_config.h"
44
+ fi
45
fi
46
47
for cfg in $PHP_MBSTRING_EXTRA_CONFIG_HEADERS; do
0 commit comments