From aaa1189113f81fcab92db0bee35e77a0ef03e5d9 Mon Sep 17 00:00:00 2001 From: dgp Date: Wed, 5 Apr 2006 16:52:56 +0000 Subject: * 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 --- ChangeLog | 5 +++-- library/reg/pkgIndex.tcl | 8 ++++---- win/Makefile.in | 10 +++++----- win/configure | 6 +++--- win/configure.in | 8 ++++---- win/tclWinReg.c | 4 ++-- 6 files changed, 21 insertions(+), 20 deletions(-) diff --git a/ChangeLog b/ChangeLog index 78e9e28..2d2a69b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,8 +5,9 @@ * win/tclWinDde.c: Bump to version 1.3.2. [RFE 1366195] * library/dde/pkgIndex.tcl: - * library/reg/pkgIndex.tcl: Bump to registry 1.1.6 - * win/tclWinReg.c: + * 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 diff --git a/library/reg/pkgIndex.tcl b/library/reg/pkgIndex.tcl index e1cd23a..eb55125 100755 --- a/library/reg/pkgIndex.tcl +++ b/library/reg/pkgIndex.tcl @@ -1,9 +1,9 @@ if {![package vsatisfies [package provide Tcl] 8]} {return} if {[string compare $::tcl_platform(platform) windows]} {return} if {[info exists ::tcl_platform(debug)]} { - package ifneeded registry 1.1.6 \ - [list load [file join $dir tclreg11g.dll] registry] + package ifneeded registry 1.2 \ + [list load [file join $dir tclreg12g.dll] registry] } else { - package ifneeded registry 1.1.6 \ - [list load [file join $dir tclreg11.dll] registry] + package ifneeded registry 1.2 \ + [list load [file join $dir tclreg12.dll] registry] } 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"); } /* -- cgit v0.12