From 931831bf75d645bdb9f079793b0224bb4843a7a3 Mon Sep 17 00:00:00 2001 From: Yasuo Ohgaki Date: Thu, 29 Mar 2012 19:48:58 +0900 Subject: [PATCH] Fixed bug #60718 Complie problem with libpq (PostgreSQL 7.3 or less) --- ext/pgsql/pgsql.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index ebc17a39e53..4a9294464ac 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -4807,7 +4807,9 @@ PHP_FUNCTION(pg_get_notify) #else if (atof(PG_VERSION) >= 9.0) { #endif +#if HAVE_PQPARAMETERSTATUS add_index_string(return_value, 2, pgsql_notify->extra, 1); +#endif } } if (result_type & PGSQL_ASSOC) { @@ -4818,7 +4820,9 @@ PHP_FUNCTION(pg_get_notify) #else if (atof(PG_VERSION) >= 9.0) { #endif +#if HAVE_PQPARAMETERSTATUS add_assoc_string(return_value, "payload", pgsql_notify->extra, 1); +#endif } } PQfreemem(pgsql_notify);