diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-09-06 02:54:56 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-09-06 02:54:56 +0000 |
commit | 37c0b648759bb24ebf17831abc35533f356be7c4 (patch) | |
tree | dc20fde37f37ac39b0067311c4b669f0d62befee /src/interfaces/libpq/fe-exec.c | |
parent | ee0ef05b8d9b22e5c7f62cb92b54fc9acc26357d (diff) | |
download | postgresql-37c0b648759bb24ebf17831abc35533f356be7c4.tar.gz postgresql-37c0b648759bb24ebf17831abc35533f356be7c4.zip |
Below is the patch against current cvs for libpgtcl and
two additional files win32.mak and libpgtcl.def.
This patch allows to compile libpgtcl.dll on Windows
with tcl > 8.0. I've tested it on WinNT (VC6.0), SUSE Linux (7.0)
and Solaris 2.6 with tcl 8.3.3.
Mikhail Terekhov
Diffstat (limited to 'src/interfaces/libpq/fe-exec.c')
-rw-r--r-- | src/interfaces/libpq/fe-exec.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-exec.c b/src/interfaces/libpq/fe-exec.c index d02b74490e7..4b67bdcf52a 100644 --- a/src/interfaces/libpq/fe-exec.c +++ b/src/interfaces/libpq/fe-exec.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.108 2001/08/21 20:39:53 momjian Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.109 2001/09/06 02:54:56 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1346,6 +1346,20 @@ PQnotifies(PGconn *conn) } /* + * PQfreeNotify - free's the memory associated with a PGnotify + * + * This function is needed on Windows when using libpq.dll and + * for example libpgtcl.dll: All memory allocated inside a dll + * should be freed in the context of the same dll. + * + */ +void +PQfreeNotify(PGnotify *notify) +{ + free(notify); +} + +/* * PQgetline - gets a newline-terminated string from the backend. * * Chiefly here so that applications can use "COPY <rel> to stdout" |