php_info_print_table_start();
php_info_print_table_header(2, "PostgreSQL Support", "enabled");
-#ifdef HAVE_PG_CONFIG_H
+#if HAVE_PG_CONFIG_H
php_info_print_table_row(2, "PostgreSQL(libpq) Version", PG_VERSION);
-#endif
+#ifdef MULTIBYTE
+ php_info_print_table_row(2, "Multibyte charater support", "enabled");
+#else
+ php_info_print_table_row(2, "Multibyte charater support", "disabled");
+#endif
+#ifdef USE_SSL
+ php_info_print_table_row(2, "SSL support", "enabled");
+#else
+ php_info_print_table_row(2, "SSL support", "disabled");
+#endif
+#endif /* HAVE_PG_CONFIG_H */
sprintf(buf, "%ld", PGG(num_persistent));
php_info_print_table_row(2, "Active Persistent Links", buf);
sprintf(buf, "%ld", PGG(num_links));