From 7828a6621962ee43df26630720491aeb950a576f Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Wed, 5 Sep 2007 12:58:48 +0000 Subject: [PATCH] MFB: Fixed bug #41845 (pgsql extension does not compile with PostgreSQL <7.4) --- ext/pgsql/pgsql.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index a94b7c4559..dee9723479 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -82,6 +82,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); -- 2.40.0