mirror of
https://github.com/php/php-src.git
synced 2025-01-26 21:54:16 +08:00
- Fix possible compile failure if configuring with --disable-all
This commit is contained in:
parent
f91b2c66a8
commit
88a1a3cecc
@ -6,7 +6,7 @@ PHP_ARG_ENABLE(wddx,whether to enable WDDX support,
|
||||
[ --enable-wddx Enable WDDX support])
|
||||
|
||||
if test "$PHP_WDDX" != "no"; then
|
||||
if test "$ext_shared" != "yes" && test "$enable_xml" = "no"; then
|
||||
if test "$ext_shared" != "yes" && (test "$enable_xml" = "no" || test "${enable_xml+set}" != "set"); then
|
||||
AC_MSG_WARN(Activating XML)
|
||||
enable_xml=yes
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user