Commit: aa45b5405e472eda27067c0abcc2f7065337baee Author: Yasuo Ohgaki <[email protected]> Thu, 29 Mar 2012 19:48:58 +0900 Committer: Johannes Schlüter <[email protected]> Thu, 12 Apr 2012 11:08:46 +0200 Parents: 74c92f77c197385ea72703b6f3e0de3bf58c1efd Branches: PHP-5.3.11
Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=aa45b5405e472eda27067c0abcc2f7065337baee Log: Fixed bug #60718 Complie problem with libpq (PostgreSQL 7.3 or less) Bugs: https://bugs.php.net/60718 Changed paths: M ext/pgsql/pgsql.c Diff: diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index ebc17a3..4a92944 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); -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
