summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@ohgaki.net>2012-03-29 19:48:58 +0900
committerJohannes Schlüter <johannes@php.net>2012-04-12 11:08:46 +0200
commitaa45b5405e472eda27067c0abcc2f7065337baee (patch)
tree33b186e5d9c92ae1c97d687d66cedd9e0da9cf7a
parent74c92f77c197385ea72703b6f3e0de3bf58c1efd (diff)
downloadphp-git-aa45b5405e472eda27067c0abcc2f7065337baee.tar.gz
Fixed bug #60718 Complie problem with libpq (PostgreSQL 7.3 or less)
-rw-r--r--ext/pgsql/pgsql.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c
index ebc17a39e5..4a9294464a 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);