Index: configure =================================================================== diff -u -N -rf3794b8253a6b514a299f0587f524fdd984727d6 -r187492dd9e893c1afcb30ca671e94bb4ea25fef1 --- configure (.../configure) (revision f3794b8253a6b514a299f0587f524fdd984727d6) +++ configure (.../configure) (revision 187492dd9e893c1afcb30ca671e94bb4ea25fef1) @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.61 for xotcl 1.6.4. +# Generated by GNU Autoconf 2.61 for xotcl 1.6.5. # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @@ -572,8 +572,8 @@ # Identity of this package. PACKAGE_NAME='xotcl' PACKAGE_TARNAME='xotcl' -PACKAGE_VERSION='1.6.4' -PACKAGE_STRING='xotcl 1.6.4' +PACKAGE_VERSION='1.6.5' +PACKAGE_STRING='xotcl 1.6.5' PACKAGE_BUGREPORT='' # Factoring default headers for most tests. @@ -1276,7 +1276,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures xotcl 1.6.4 to adapt to many kinds of systems. +\`configure' configures xotcl 1.6.5 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1337,7 +1337,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of xotcl 1.6.4:";; + short | recursive ) echo "Configuration of xotcl 1.6.5:";; esac cat <<\_ACEOF @@ -1448,7 +1448,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -xotcl configure 1.6.4 +xotcl configure 1.6.5 generated by GNU Autoconf 2.61 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -1462,7 +1462,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by xotcl $as_me 1.6.4, which was +It was created by xotcl $as_me 1.6.5, which was generated by GNU Autoconf 2.61. Invocation command line was $ $0 $@ @@ -2066,7 +2066,7 @@ # do not modify the following lines manually, they are generated with changeXOTclVersion XOTCL_MAJOR_VERSION=1 XOTCL_MINOR_VERSION=6 -XOTCL_RELEASE_LEVEL=.4 +XOTCL_RELEASE_LEVEL=.5 XOTCL_VERSION=${XOTCL_MAJOR_VERSION}.${XOTCL_MINOR_VERSION} NODOT_VERSION=${XOTCL_MAJOR_VERSION}${XOTCL_MINOR_VERSION} @@ -11211,7 +11211,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by xotcl $as_me 1.6.4, which was +This file was extended by xotcl $as_me 1.6.5, which was generated by GNU Autoconf 2.61. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -11254,7 +11254,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -xotcl config.status 1.6.4 +xotcl config.status 1.6.5 configured by $0, generated by GNU Autoconf 2.61, with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" @@ -12007,3 +12007,5 @@ + + Index: configure.in =================================================================== diff -u -N -rf3794b8253a6b514a299f0587f524fdd984727d6 -r187492dd9e893c1afcb30ca671e94bb4ea25fef1 --- configure.in (.../configure.in) (revision f3794b8253a6b514a299f0587f524fdd984727d6) +++ configure.in (.../configure.in) (revision 187492dd9e893c1afcb30ca671e94bb4ea25fef1) @@ -11,7 +11,7 @@ # for this package, and can be a relative path, such as: # #-------------------------------------------------------------------- -define(XOTclVersion, 1.6.4) +define(XOTclVersion, 1.6.5) AC_INIT([xotcl], [XOTclVersion]) #-------------------------------------------------------------------- @@ -104,7 +104,7 @@ # do not modify the following lines manually, they are generated with changeXOTclVersion XOTCL_MAJOR_VERSION=1 XOTCL_MINOR_VERSION=6 -XOTCL_RELEASE_LEVEL=.4 +XOTCL_RELEASE_LEVEL=.5 XOTCL_VERSION=${XOTCL_MAJOR_VERSION}.${XOTCL_MINOR_VERSION} NODOT_VERSION=${XOTCL_MAJOR_VERSION}${XOTCL_MINOR_VERSION} @@ -507,3 +507,5 @@ + + Index: generic/xotcl.c =================================================================== diff -u -N -r2b53035875b4732d2ce3c161004eae6ccc5de104 -r187492dd9e893c1afcb30ca671e94bb4ea25fef1 --- generic/xotcl.c (.../xotcl.c) (revision 2b53035875b4732d2ce3c161004eae6ccc5de104) +++ generic/xotcl.c (.../xotcl.c) (revision 187492dd9e893c1afcb30ca671e94bb4ea25fef1) @@ -1761,7 +1761,13 @@ DECR_REF_COUNT(key); #if defined(PRE85) +# if FORWARD_COMPATIBLE + if (!forwardCompatibleMode) { + newVar->nsPtr = (Namespace *)ns; + } +# else newVar->nsPtr = (Namespace *)ns; +# endif #endif *varPtr = (Tcl_Var)newVar; } Index: library/lib/changeXOTclVersion.xotcl =================================================================== diff -u -N -rf3794b8253a6b514a299f0587f524fdd984727d6 -r187492dd9e893c1afcb30ca671e94bb4ea25fef1 --- library/lib/changeXOTclVersion.xotcl (.../changeXOTclVersion.xotcl) (revision f3794b8253a6b514a299f0587f524fdd984727d6) +++ library/lib/changeXOTclVersion.xotcl (.../changeXOTclVersion.xotcl) (revision 187492dd9e893c1afcb30ca671e94bb4ea25fef1) @@ -6,7 +6,7 @@ # set XOTCL_MAJOR_VERSION 1 set XOTCL_MINOR_VERSION 6 -set XOTCL_RELEASE_LEVEL .4 +set XOTCL_RELEASE_LEVEL .5 # example settings: # 1.0 Index: library/store/XOTclGdbm/configure =================================================================== diff -u -N -rf3794b8253a6b514a299f0587f524fdd984727d6 -r187492dd9e893c1afcb30ca671e94bb4ea25fef1 --- library/store/XOTclGdbm/configure (.../configure) (revision f3794b8253a6b514a299f0587f524fdd984727d6) +++ library/store/XOTclGdbm/configure (.../configure) (revision 187492dd9e893c1afcb30ca671e94bb4ea25fef1) @@ -11477,3 +11477,5 @@ + + Index: library/store/XOTclGdbm/configure.in =================================================================== diff -u -N -rf3794b8253a6b514a299f0587f524fdd984727d6 -r187492dd9e893c1afcb30ca671e94bb4ea25fef1 --- library/store/XOTclGdbm/configure.in (.../configure.in) (revision f3794b8253a6b514a299f0587f524fdd984727d6) +++ library/store/XOTclGdbm/configure.in (.../configure.in) (revision 187492dd9e893c1afcb30ca671e94bb4ea25fef1) @@ -297,3 +297,5 @@ + + Index: library/store/XOTclSdbm/configure =================================================================== diff -u -N -rf3794b8253a6b514a299f0587f524fdd984727d6 -r187492dd9e893c1afcb30ca671e94bb4ea25fef1 --- library/store/XOTclSdbm/configure (.../configure) (revision f3794b8253a6b514a299f0587f524fdd984727d6) +++ library/store/XOTclSdbm/configure (.../configure) (revision 187492dd9e893c1afcb30ca671e94bb4ea25fef1) @@ -11424,3 +11424,5 @@ + + Index: library/store/XOTclSdbm/configure.in =================================================================== diff -u -N -rf3794b8253a6b514a299f0587f524fdd984727d6 -r187492dd9e893c1afcb30ca671e94bb4ea25fef1 --- library/store/XOTclSdbm/configure.in (.../configure.in) (revision f3794b8253a6b514a299f0587f524fdd984727d6) +++ library/store/XOTclSdbm/configure.in (.../configure.in) (revision 187492dd9e893c1afcb30ca671e94bb4ea25fef1) @@ -256,3 +256,5 @@ + + Index: library/xml/TclExpat-1.1/configure =================================================================== diff -u -N -rf3794b8253a6b514a299f0587f524fdd984727d6 -r187492dd9e893c1afcb30ca671e94bb4ea25fef1 --- library/xml/TclExpat-1.1/configure (.../configure) (revision f3794b8253a6b514a299f0587f524fdd984727d6) +++ library/xml/TclExpat-1.1/configure (.../configure) (revision 187492dd9e893c1afcb30ca671e94bb4ea25fef1) @@ -11464,3 +11464,5 @@ + + Index: library/xml/TclExpat-1.1/configure.in =================================================================== diff -u -N -rf3794b8253a6b514a299f0587f524fdd984727d6 -r187492dd9e893c1afcb30ca671e94bb4ea25fef1 --- library/xml/TclExpat-1.1/configure.in (.../configure.in) (revision f3794b8253a6b514a299f0587f524fdd984727d6) +++ library/xml/TclExpat-1.1/configure.in (.../configure.in) (revision 187492dd9e893c1afcb30ca671e94bb4ea25fef1) @@ -261,3 +261,5 @@ + +