|
2 | 2 | * pltcl.c- PostgreSQL support for Tcl as
|
3 | 3 | * procedural language (PL)
|
4 | 4 | *
|
5 |
| - * $PostgreSQL: pgsql/src/pl/tcl/pltcl.c,v 1.113 2007/09/21 00:30:49 tgl Exp $ |
| 5 | + * $PostgreSQL: pgsql/src/pl/tcl/pltcl.c,v 1.114 2007/09/28 22:33:20 momjian Exp $ |
6 | 6 | *
|
7 | 7 | **********************************************************************/
|
8 | 8 |
|
@@ -176,9 +176,9 @@ static void pltcl_build_tuple_argument(HeapTuple tuple, TupleDesc tupdesc,
|
176 | 176 | * from Postgres, so the notifier capabilities are initialized, but never
|
177 | 177 | * used. Only InitNotifier and DeleteFileHandler ever seem to get called
|
178 | 178 | * within Postgres, but we implement all the functions for completeness.
|
179 |
| - * We can only fix this with Tcl >= 8.2, when Tcl_SetNotifier() appeared. |
| 179 | + * We can only fix this with Tcl >= 8.4, when Tcl_SetNotifier() appeared. |
180 | 180 | */
|
181 |
| -#ifHAVE_TCL_VERSION(8,2) |
| 181 | +#ifHAVE_TCL_VERSION(8,4) |
182 | 182 |
|
183 | 183 | staticClientData
|
184 | 184 | pltcl_InitNotifier(void)
|
@@ -262,7 +262,7 @@ _PG_init(void)
|
262 | 262 | Tcl_FindExecutable("");
|
263 | 263 | #endif
|
264 | 264 |
|
265 |
| -#ifHAVE_TCL_VERSION(8,2) |
| 265 | +#ifHAVE_TCL_VERSION(8,4) |
266 | 266 | /*
|
267 | 267 | * Override the functions in the Notifier subsystem. See comments above.
|
268 | 268 | */
|
|