diff options
Diffstat (limited to 'src/pl/tcl/pltcl.c')
-rw-r--r-- | src/pl/tcl/pltcl.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/pl/tcl/pltcl.c b/src/pl/tcl/pltcl.c index 08c8492050e..73d660e88a6 100644 --- a/src/pl/tcl/pltcl.c +++ b/src/pl/tcl/pltcl.c @@ -39,7 +39,10 @@ #include "utils/typcache.h" -PG_MODULE_MAGIC; +PG_MODULE_MAGIC_EXT( + .name = "pltcl", + .version = PG_VERSION +); #define HAVE_TCL_VERSION(maj,min) \ ((TCL_MAJOR_VERSION > maj) || \ |