summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2007-07-02 15:37:43 +0000
committerIlia Alshanetsky <iliaa@php.net>2007-07-02 15:37:43 +0000
commitadcfdf7fa43e6cf2772bd51cc8b15365d708ed2c (patch)
treecdaaeb6d28a253c327711ee090417c0ad3140c5b
parent19f89a22c0cb739b421ccd49404df8ace2562594 (diff)
downloadphp-git-adcfdf7fa43e6cf2772bd51cc8b15365d708ed2c.tar.gz
Fixed bug #41845 (pgsql extension does not compile with PostgreSQL <7.4)
-rw-r--r--NEWS4
-rw-r--r--ext/pgsql/pgsql.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 64e6e8a456..278661aed4 100644
--- a/NEWS
+++ b/NEWS
@@ -41,6 +41,8 @@ PHP NEWS
- Fixed bug #41867 (getName is broken). (Rob)
- Fixed bug #41865 (fputcsv(): 2nd parameter is not optional). (Jani)
+- Fixed bug #41845 (pgsql extension does not compile with PostgreSQL <7.4).
+ (Ilia)
- Fixed bug #41813 (segmentation fault when using string offset as an object).
(judas dot iscariote at gmail dot com, Tony)
- Fixed bug #41795 (checkdnsrr does not support DNS_TXT type).
@@ -56,7 +58,7 @@ PHP NEWS
(Chris Jones, Tony)
- Fixed bug #41698 (float parameters truncated to integer in prepared
statements). (Ilia)
-- Fixed bug #41692 (ArrayObject shows weird behaviour in respect to
+- Fixed bug #41692 (ArrayObject shows weird behavior in respect to
inheritance). (Tony)
- Fixed bug #41686 (Omitting length param in array_slice not possible).
(Ilia)
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c
index 73e25af365..eadcc1ce14 100644
--- a/ext/pgsql/pgsql.c
+++ b/ext/pgsql/pgsql.c
@@ -81,6 +81,10 @@
#define CHECK_DEFAULT_LINK(x) if ((x) == -1) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "No PostgreSQL link opened yet"); }
+#ifndef HAVE_PQFREEMEM
+#define PGfreemem free
+#endif
+
ZEND_DECLARE_MODULE_GLOBALS(pgsql)
static PHP_GINIT_FUNCTION(pgsql);