without functional loss with regard to the session serializer, it
is safe to default to disable. We enable XML automatically only,
if the user is building WDDX as a static extension.
dnl config.m4 for extension wddx
PHP_ARG_ENABLE(wddx,for WDDX support,
-[ --disable-wddx Disable WDDX support], yes)
+[ --enable-wddx Enable WDDX support])
if test "$PHP_WDDX" != "no"; then
- if test "$enable_xml" = "no"; then
+ if test "$ext_shared" != "yes" && test "$enable_xml" = "no"; then
AC_MSG_WARN(Activating XML)
enable_xml=yes
fi