Commit:    931831bf75d645bdb9f079793b0224bb4843a7a3
Author:    Yasuo Ohgaki <yohg...@ohgaki.net>         Thu, 29 Mar 2012 19:48:58 
+0900
Parents:   55b1e612421c52ea0bb8a3772095c5bbd62045db
Branches:  PHP-5.4 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=931831bf75d645bdb9f079793b0224bb4843a7a3

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:
931831bf75d645bdb9f079793b0224bb4843a7a3
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

Reply via email to