diff options
author | dgp <dgp@users.sourceforge.net> | 2006-04-05 16:52:56 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-04-05 16:52:56 (GMT) |
commit | aaa1189113f81fcab92db0bee35e77a0ef03e5d9 (patch) | |
tree | 6c243724ca1c5956ba8de54c4fa636b8204072a0 /win | |
parent | 50d05904e2652689f8352c49ba3ea9b256922bb0 (diff) | |
download | tcl-aaa1189113f81fcab92db0bee35e77a0ef03e5d9.zip tcl-aaa1189113f81fcab92db0bee35e77a0ef03e5d9.tar.gz tcl-aaa1189113f81fcab92db0bee35e77a0ef03e5d9.tar.bz2 |
* library/reg/pkgIndex.tcl: Bump to registry 1.2 because
* win/tclWinReg.c: Registry_Unload() is a new public routine
* win/Makefile.in: compared to the 1.1.* releases.
* win/configure.in: Bump package version numbers.
* win/configure: autoconf 2.59
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 10 | ||||
-rwxr-xr-x | win/configure | 6 | ||||
-rw-r--r-- | win/configure.in | 8 | ||||
-rw-r--r-- | win/tclWinReg.c | 4 |
4 files changed, 14 insertions, 14 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 0814370..95196cb 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.100 2006/03/29 23:02:42 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.101 2006/04/05 16:52:56 dgp Exp $ VERSION = @TCL_VERSION@ @@ -563,7 +563,7 @@ install-binaries: binaries else true; \ fi; \ done; - @for i in dde1.3 reg1.1; \ + @for i in dde1.3 reg1.2; \ do \ if [ ! -d $(LIB_INSTALL_DIR)/$$i ] ; then \ echo "Making directory $(LIB_INSTALL_DIR)/$$i"; \ @@ -597,13 +597,13 @@ install-binaries: binaries fi @if [ -f $(REG_DLL_FILE) ]; then \ echo installing $(REG_DLL_FILE); \ - $(COPY) $(REG_DLL_FILE) $(LIB_INSTALL_DIR)/reg1.1; \ + $(COPY) $(REG_DLL_FILE) $(LIB_INSTALL_DIR)/reg1.2; \ $(COPY) $(ROOT_DIR)/library/reg/pkgIndex.tcl \ - $(LIB_INSTALL_DIR)/reg1.1; \ + $(LIB_INSTALL_DIR)/reg1.2; \ fi @if [ -f $(REG_LIB_FILE) ]; then \ echo installing $(REG_LIB_FILE); \ - $(COPY) $(REG_LIB_FILE) $(LIB_INSTALL_DIR)/reg1.1; \ + $(COPY) $(REG_LIB_FILE) $(LIB_INSTALL_DIR)/reg1.2; \ fi install-libraries: libraries install-tzdata install-msgs diff --git a/win/configure b/win/configure index 2594fff..c074bf1 100755 --- a/win/configure +++ b/win/configure @@ -1276,10 +1276,10 @@ TCL_DDE_MINOR_VERSION=3 TCL_DDE_PATCH_LEVEL="2" DDEVER=$TCL_DDE_MAJOR_VERSION$TCL_DDE_MINOR_VERSION -TCL_REG_VERSION=1.1 +TCL_REG_VERSION=1.2 TCL_REG_MAJOR_VERSION=1 -TCL_REG_MINOR_VERSION=1 -TCL_REG_PATCH_LEVEL="6" +TCL_REG_MINOR_VERSION=2 +TCL_REG_PATCH_LEVEL="" REGVER=$TCL_REG_MAJOR_VERSION$TCL_REG_MINOR_VERSION #------------------------------------------------------------------------ diff --git a/win/configure.in b/win/configure.in index 37a3214..9541ce0 100644 --- a/win/configure.in +++ b/win/configure.in @@ -3,7 +3,7 @@ # generate the file "configure", which is run during Tcl installation # to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.87 2006/04/05 16:32:44 dgp Exp $ +# RCS: @(#) $Id: configure.in,v 1.88 2006/04/05 16:52:56 dgp Exp $ AC_INIT(../generic/tcl.h) AC_PREREQ(2.59) @@ -25,10 +25,10 @@ TCL_DDE_MINOR_VERSION=3 TCL_DDE_PATCH_LEVEL="2" DDEVER=$TCL_DDE_MAJOR_VERSION$TCL_DDE_MINOR_VERSION -TCL_REG_VERSION=1.1 +TCL_REG_VERSION=1.2 TCL_REG_MAJOR_VERSION=1 -TCL_REG_MINOR_VERSION=1 -TCL_REG_PATCH_LEVEL="6" +TCL_REG_MINOR_VERSION=2 +TCL_REG_PATCH_LEVEL="" REGVER=$TCL_REG_MAJOR_VERSION$TCL_REG_MINOR_VERSION #------------------------------------------------------------------------ diff --git a/win/tclWinReg.c b/win/tclWinReg.c index 5b7c2ea..f1d7e30 100644 --- a/win/tclWinReg.c +++ b/win/tclWinReg.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinReg.c,v 1.36 2006/04/05 16:32:44 dgp Exp $ + * RCS: @(#) $Id: tclWinReg.c,v 1.37 2006/04/05 16:52:56 dgp Exp $ */ #include "tclInt.h" @@ -238,7 +238,7 @@ Registry_Init( cmd = Tcl_CreateObjCommand(interp, "registry", RegistryObjCmd, (ClientData)interp, DeleteCmd); Tcl_SetAssocData(interp, REGISTRY_ASSOC_KEY, NULL, (ClientData)cmd); - return Tcl_PkgProvide(interp, "registry", "1.1.6"); + return Tcl_PkgProvide(interp, "registry", "1.2"); } /* |