diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2007-07-02 15:37:43 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2007-07-02 15:37:43 +0000 |
commit | adcfdf7fa43e6cf2772bd51cc8b15365d708ed2c (patch) | |
tree | cdaaeb6d28a253c327711ee090417c0ad3140c5b /ext/pgsql | |
parent | 19f89a22c0cb739b421ccd49404df8ace2562594 (diff) | |
download | php-git-adcfdf7fa43e6cf2772bd51cc8b15365d708ed2c.tar.gz |
Fixed bug #41845 (pgsql extension does not compile with PostgreSQL <7.4)
Diffstat (limited to 'ext/pgsql')
-rw-r--r-- | ext/pgsql/pgsql.c | 4 |
1 files changed, 4 insertions, 0 deletions
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); |