From: Jeff Hobbs Date: Wed, 9 Jun 2004 16:30:48 +0000 (+0000) Subject: * generic/vfs.c (Vfs_Init): added #ifndef PACKAGE_VERSION for X-Git-Tag: vfs-1-4~91 X-Git-Url: http://privyetmir.co.uk/gitweb.cgi?a=commitdiff_plain;h=ca5832523f7e94766838143d0d887a734857170b;p=tclvfs * generic/vfs.c (Vfs_Init): added #ifndef PACKAGE_VERSION for non-TEA based build system. --- diff --git a/generic/vfs.c b/generic/vfs.c index 8d81bdd..618edb7 100644 --- a/generic/vfs.c +++ b/generic/vfs.c @@ -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; }