]> granicus.if.org Git - php/commitdiff
Show if Schemas are supported
authorMarcus Boerger <helly@php.net>
Sat, 25 Oct 2003 21:28:01 +0000 (21:28 +0000)
committerMarcus Boerger <helly@php.net>
Sat, 25 Oct 2003 21:28:01 +0000 (21:28 +0000)
ext/simplexml/simplexml.c

index e19f9a5c4a3d306bd2d5cd2b26e83506fb5a8866..16e64a344adc9859b67bd3834af67c2028d6a2c9 100644 (file)
@@ -1087,6 +1087,12 @@ PHP_MINFO_FUNCTION(simplexml)
        php_info_print_table_start();
        php_info_print_table_header(2, "Simplexml support", "enabled");
        php_info_print_table_row(2, "Revision", "$Revision$");
+       php_info_print_table_row(2, "Schema support", 
+#ifdef LIBXML_SCHEMAS_ENABLED
+               "enabled");
+#else
+               "not available");
+#endif
        php_info_print_table_end();
 }
 /* }}} */