aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--generic/tkZinc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkZinc.c b/generic/tkZinc.c
index f014aee..c5cb70b 100644
--- a/generic/tkZinc.c
+++ b/generic/tkZinc.c
@@ -27,7 +27,7 @@
static const char rcs_id[]="$Id$";
static const char compile_id[]="$Compile: " __FILE__ " " __DATE__ " " __TIME__ " $";
-static const char * const zinc_version = "zinc-version-" VERSION;
+static const char * const zinc_version = "zinc-version-" PACKAGE_VERSION;
#include "Types.h"
@@ -1353,7 +1353,7 @@ ZincObjCmd(ClientData client_data, /* Main window associated with
#endif
if (argc == 1) {
- Tcl_AppendResult(interp, VERSION, NULL);
+ Tcl_AppendResult(interp, PACKAGE_VERSION, NULL);
Tcl_AppendResult(interp, " X11", NULL);
#ifdef GL
# ifdef _WIN32
@@ -9236,7 +9236,7 @@ Tkzinc_Init(Tcl_Interp *interp) /* Used for error reporting. */
#endif
#ifndef PTK
- if (Tcl_PkgProvide(interp, "Tkzinc", VERSION) == TCL_ERROR) {
+ if (Tcl_PkgProvide(interp, "Tkzinc", PACKAGE_VERSION) == TCL_ERROR) {
return TCL_ERROR;
}
#endif