* generic/vfs.c (Vfs_Init): added #ifndef PACKAGE_VERSION for
authorJeff Hobbs <hobbs@users.sourceforge.net>
Wed, 9 Jun 2004 16:30:48 +0000 (16:30 +0000)
committerJeff Hobbs <hobbs@users.sourceforge.net>
Wed, 9 Jun 2004 16:30:48 +0000 (16:30 +0000)
non-TEA based build system.

generic/vfs.c

index 8d81bdd6535fabd7b13569801de94c6bf7ff242e..618edb7da2ddeecbc427badf693bca4db0f6eb63 100644 (file)
@@ -339,7 +339,11 @@ Vfs_Init(interp)
     if (Tcl_IsSafe(interp)) {
         return TCL_ERROR;
     }
-    
+
+#ifndef PACKAGE_VERSION
+    /* keep in sync with actual version */
+#define PACKAGE_VERSION "1.3"
+#endif
     if (Tcl_PkgProvide(interp, "vfs", PACKAGE_VERSION) == TCL_ERROR) {
         return TCL_ERROR;
     }