From: foobar Date: Wed, 1 Nov 2000 04:38:28 +0000 (+0000) Subject: Add line of possible XBM support to the phpinfo() X-Git-Tag: php-4.0.4RC3~408 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d6d3f5e9b67ca4b59f50e532b8bc6f1ee055cc6f;p=php Add line of possible XBM support to the phpinfo() --- diff --git a/ext/gd/gd.c b/ext/gd/gd.c index 0dacca80ea..db45af3cc9 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -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(); }