diff options
| author | Yasuo Ohgaki <yohgaki@php.net> | 2002-11-29 17:18:01 +0000 |
|---|---|---|
| committer | Yasuo Ohgaki <yohgaki@php.net> | 2002-11-29 17:18:01 +0000 |
| commit | e4be6b3ac2ede24f81daa0a135f9abb5e0d76d39 (patch) | |
| tree | 0ee9b9e49ad66033226b73a3cc23b6282329070c | |
| parent | 2de45bec6579c71eaab8210c69e0144864fa2fce (diff) | |
| download | php-git-e4be6b3ac2ede24f81daa0a135f9abb5e0d76d39.tar.gz | |
Fixed problem with PostgreSQL 7.3
| -rw-r--r-- | ext/pgsql/pgsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 9ad86357ca..e9cf362857 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -464,7 +464,7 @@ PHP_MINFO_FUNCTION(pgsql) php_info_print_table_header(2, "PostgreSQL Support", "enabled"); #if HAVE_PG_CONFIG_H php_info_print_table_row(2, "PostgreSQL(libpq) Version", PG_VERSION); -#ifdef MULTIBYTE +#ifdef HAVE_PGSQL_WITH_MULTIBYTE_SUPPORT php_info_print_table_row(2, "Multibyte charater support", "enabled"); #else php_info_print_table_row(2, "Multibyte charater support", "disabled"); |
