Add line of possible XBM support to the phpinfo()

This commit is contained in:
foobar 2000-11-01 04:38:28 +00:00
parent dfcd4c18e6
commit d6d3f5e9b6

View File

@ -277,14 +277,17 @@ PHP_MINFO_FUNCTION(gd)
#ifdef HAVE_GD_GIF
php_info_print_table_row(2, "GIF Support", "enabled");
#endif
#ifdef HAVE_GD_PNG
php_info_print_table_row(2, "PNG Support", "enabled");
#endif
#ifdef HAVE_GD_JPG
php_info_print_table_row(2, "JPG Support", "enabled");
#endif
#ifdef HAVE_GD_PNG
php_info_print_table_row(2, "PNG Support", "enabled");
#endif
#ifdef HAVE_GD_WBMP
php_info_print_table_row(2, "WBMP Support", "enabled");
#endif
#ifdef HAVE_GD_XBM
php_info_print_table_row(2, "XBM Support", "enabled");
#endif
php_info_print_table_end();
}