From f2509ae1a6b08b0e49861ce53b755de86c9c0da3 Mon Sep 17 00:00:00 2001 From: Peter da Silva Date: Fri, 28 Aug 2020 15:31:21 +0000 Subject: [PATCH] Make versions consistent. --- Makefile | 2 +- tkined/configure.ac | 4 ++-- tkined/generic/tkined.h | 2 +- tkined/library/Command.tcl | 2 +- tkined/library/Diagram.tcl | 2 +- tkined/library/Dialog.tcl | 2 +- tkined/library/Editor.tcl | 2 +- tkined/library/Event.tcl | 2 +- tkined/library/Help.tcl | 2 +- tkined/library/Misc.tcl | 2 +- tkined/library/Objects.tcl | 2 +- tkined/library/Tool.tcl | 2 +- tkined/library/pkgIndex.tcl | 18 +++++++++--------- tkined/unix/configure.in | 2 +- tkined/win/makefile | 4 ++-- tnm/configure.ac | 4 ++-- tnm/generic/tnm.h | 2 +- tnm/library/TnmDialog.tcl | 2 +- tnm/library/TnmEther.tcl | 2 +- tnm/library/TnmIetf.tcl | 2 +- tnm/library/TnmInet.tcl | 2 +- tnm/library/TnmMap.tcl | 2 +- tnm/library/TnmMib.tcl | 2 +- tnm/library/TnmMonitor.tcl | 2 +- tnm/library/TnmScriptMib.tcl | 2 +- tnm/library/TnmSmxProfiles.tcl | 2 +- tnm/library/TnmSnmp.tcl | 2 +- tnm/library/TnmTerm.tcl | 2 +- tnm/library/pkgIndex.tcl | 2 +- tnm/unix/configure.in | 2 +- tnm/win/makefile | 6 +++--- tnm/win/tnmWinPort.h | 2 +- 32 files changed, 45 insertions(+), 45 deletions(-) diff --git a/Makefile b/Makefile index 24edf07..ac0bd69 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ all: @echo Available platform targets: $(PLATFORMS) @echo -wheezy jessie yakkety slackware: +ubuntu wheezy jessie yakkety slackware: (cd tnm && autoheader && autoconf && ./configure) (cd tkined && autoheader && autoconf && ./configure) diff --git a/tkined/configure.ac b/tkined/configure.ac index 5c94e6d..92ad4bf 100644 --- a/tkined/configure.ac +++ b/tkined/configure.ac @@ -20,9 +20,9 @@ dnl to configure the system for the local environment. # so that we create the export library with the dll. #----------------------------------------------------------------------- -AC_INIT([Tkined], [1.5.1]) +AC_INIT([Tkined], [1.6.0]) -TKI_VERSION=1.5.1 +TKI_VERSION=1.6.0 # disabled config.h generation, since this inhibits stub compilation diff --git a/tkined/generic/tkined.h b/tkined/generic/tkined.h index fb77e05..38d0f4f 100644 --- a/tkined/generic/tkined.h +++ b/tkined/generic/tkined.h @@ -77,7 +77,7 @@ typedef long LONG; *---------------------------------------------------------------- */ -#define TKI_VERSION "1.5.1" +#define TKI_VERSION "1.6.0" #include #include diff --git a/tkined/library/Command.tcl b/tkined/library/Command.tcl index b9395ab..15fa320 100644 --- a/tkined/library/Command.tcl +++ b/tkined/library/Command.tcl @@ -23,7 +23,7 @@ ## express or implied warranty. ## -package provide TkinedCommand 1.5.1 +package provide TkinedCommand 1.6.0 ## ## Reinitialise the editor. Retrieve all objects of the canvas diff --git a/tkined/library/Diagram.tcl b/tkined/library/Diagram.tcl index c634055..fc70027 100644 --- a/tkined/library/Diagram.tcl +++ b/tkined/library/Diagram.tcl @@ -19,7 +19,7 @@ ## express or implied warranty. ## -package provide TkinedDiagram 1.5.1 +package provide TkinedDiagram 1.6.0 proc Diagram__create { editor } { set w [$editor toplevel].diagram diff --git a/tkined/library/Dialog.tcl b/tkined/library/Dialog.tcl index 2934dae..7e2ae4a 100644 --- a/tkined/library/Dialog.tcl +++ b/tkined/library/Dialog.tcl @@ -20,7 +20,7 @@ ## express or implied warranty. ## -package provide TkinedDialog 1.5.1 +package provide TkinedDialog 1.6.0 ## ## Compute the geometry of a dialog window w based on the geometry diff --git a/tkined/library/Editor.tcl b/tkined/library/Editor.tcl index 7807c35..6263b73 100644 --- a/tkined/library/Editor.tcl +++ b/tkined/library/Editor.tcl @@ -20,7 +20,7 @@ ## express or implied warranty. ## -package provide TkinedEditor 1.5.1 +package provide TkinedEditor 1.6.0 event add <> event add <> diff --git a/tkined/library/Event.tcl b/tkined/library/Event.tcl index 9914631..d60f3f6 100644 --- a/tkined/library/Event.tcl +++ b/tkined/library/Event.tcl @@ -18,7 +18,7 @@ ## express or implied warranty. ## -package provide TkinedEvent 1.5.1 +package provide TkinedEvent 1.6.0 ## ## The following set of procedures handle EVENT objects. diff --git a/tkined/library/Help.tcl b/tkined/library/Help.tcl index 727bd2c..357f149 100644 --- a/tkined/library/Help.tcl +++ b/tkined/library/Help.tcl @@ -18,7 +18,7 @@ ## express or implied warranty. ## -package provide TkinedHelp 1.5.1 +package provide TkinedHelp 1.6.0 proc Help__general { editor } { set w [$editor toplevel] diff --git a/tkined/library/Misc.tcl b/tkined/library/Misc.tcl index 2fcf78e..2a075ba 100644 --- a/tkined/library/Misc.tcl +++ b/tkined/library/Misc.tcl @@ -16,7 +16,7 @@ ## express or implied warranty. ## -package provide TkinedMisc 1.5.1 +package provide TkinedMisc 1.6.0 ## ## This is ined implemented on top of tk. This file contains only diff --git a/tkined/library/Objects.tcl b/tkined/library/Objects.tcl index f62bc0f..3f16798 100644 --- a/tkined/library/Objects.tcl +++ b/tkined/library/Objects.tcl @@ -35,7 +35,7 @@ ## express or implied warranty. ## -package provide TkinedObjects 1.5.1 +package provide TkinedObjects 1.6.0 ## ## These procs are of general interest and are called by the diff --git a/tkined/library/Tool.tcl b/tkined/library/Tool.tcl index 6d6384d..1a16dc3 100644 --- a/tkined/library/Tool.tcl +++ b/tkined/library/Tool.tcl @@ -21,7 +21,7 @@ ## express or implied warranty. ## -package provide TkinedTool 1.5.1 +package provide TkinedTool 1.6.0 ## Some virtual events that make our life a bit more easier - especially ## for mouse impaired people. :-) diff --git a/tkined/library/pkgIndex.tcl b/tkined/library/pkgIndex.tcl index 43a79ba..19a24d6 100644 --- a/tkined/library/pkgIndex.tcl +++ b/tkined/library/pkgIndex.tcl @@ -1,12 +1,12 @@ # Tcl package index file, version 1.0 # This file is hand crafted so that the packages are loaded immediately. -package ifneeded TkinedCommand 1.5.1 [list source [file join $dir Command.tcl]] -package ifneeded TkinedDiagram 1.5.1 [list source [file join $dir Diagram.tcl]] -package ifneeded TkinedDialog 1.5.1 [list source [file join $dir Dialog.tcl]] -package ifneeded TkinedEditor 1.5.1 [list source [file join $dir Editor.tcl]] -package ifneeded TkinedEvent 1.5.1 [list source [file join $dir Event.tcl]] -package ifneeded TkinedHelp 1.5.1 [list source [file join $dir Help.tcl]] -package ifneeded TkinedMisc 1.5.1 [list source [file join $dir Misc.tcl]] -package ifneeded TkinedObjects 1.5.1 [list source [file join $dir Objects.tcl]] -package ifneeded TkinedTool 1.5.1 [list source [file join $dir Tool.tcl]] +package ifneeded TkinedCommand 1.6.0 [list source [file join $dir Command.tcl]] +package ifneeded TkinedDiagram 1.6.0 [list source [file join $dir Diagram.tcl]] +package ifneeded TkinedDialog 1.6.0 [list source [file join $dir Dialog.tcl]] +package ifneeded TkinedEditor 1.6.0 [list source [file join $dir Editor.tcl]] +package ifneeded TkinedEvent 1.6.0 [list source [file join $dir Event.tcl]] +package ifneeded TkinedHelp 1.6.0 [list source [file join $dir Help.tcl]] +package ifneeded TkinedMisc 1.6.0 [list source [file join $dir Misc.tcl]] +package ifneeded TkinedObjects 1.6.0 [list source [file join $dir Objects.tcl]] +package ifneeded TkinedTool 1.6.0 [list source [file join $dir Tool.tcl]] diff --git a/tkined/unix/configure.in b/tkined/unix/configure.in index 3f748df..553dbbd 100644 --- a/tkined/unix/configure.in +++ b/tkined/unix/configure.in @@ -7,7 +7,7 @@ dnl AC_INIT(scotty.c) AC_CONFIG_HEADER(config.h) -TNM_VERSION=3.1.0 +TNM_VERSION=3.1.3 TKI_VERSION=1.6.0 TCL_VERSION=8.6 TK_VERSION=8.6 diff --git a/tkined/win/makefile b/tkined/win/makefile index 27ad392..c0d15d5 100644 --- a/tkined/win/makefile +++ b/tkined/win/makefile @@ -5,8 +5,8 @@ # and is derived from the example provided by Sun Microsystems. # -TNM_VERSION = 3.1.0 -TNM_DLL_VERSION = 310 +TNM_VERSION = 3.1.3 +TNM_DLL_VERSION = 313 TKI_VERSION = 1.6.0 TKI_DLL_VERSION = 160 diff --git a/tnm/configure.ac b/tnm/configure.ac index 116bfdb..1f70aaf 100644 --- a/tnm/configure.ac +++ b/tnm/configure.ac @@ -20,13 +20,13 @@ dnl to configure the system for the local environment. # so that we create the export library with the dll. #----------------------------------------------------------------------- -AC_INIT([Tnm], [3.1.0]) +AC_INIT([Tnm], [3.1.3]) #----------------------------------------------------------------------- # Scotty specific definitions and checks #----------------------------------------------------------------------- -TNM_VERSION=3.1.0 +TNM_VERSION=3.1.3 TKI_VERSION=1.6.0 # disabled config.h generation, since this inhibits stub compilation diff --git a/tnm/generic/tnm.h b/tnm/generic/tnm.h index 557bbae..a4085f6 100644 --- a/tnm/generic/tnm.h +++ b/tnm/generic/tnm.h @@ -78,7 +78,7 @@ typedef long LONG; *---------------------------------------------------------------- */ -#define TNM_VERSION "3.1.0" +#define TNM_VERSION "3.1.3" #ifndef TKI_VERSION #define TKI_VERSION "1.6.0" #endif diff --git a/tnm/library/TnmDialog.tcl b/tnm/library/TnmDialog.tcl index 9cdd0bf..41db6b2 100644 --- a/tnm/library/TnmDialog.tcl +++ b/tnm/library/TnmDialog.tcl @@ -13,7 +13,7 @@ # @(#) $Id: TnmDialog.tcl,v 1.1.1.1 2006/12/07 12:16:57 karl Exp $ package require Tnm 3.1 -package provide TnmDialog 3.1.0 +package provide TnmDialog 3.1.3 namespace eval TnmDialog { namespace export Confirm diff --git a/tnm/library/TnmEther.tcl b/tnm/library/TnmEther.tcl index 72fe6da..7ed5fdd 100644 --- a/tnm/library/TnmEther.tcl +++ b/tnm/library/TnmEther.tcl @@ -16,7 +16,7 @@ # @(#) $Id: TnmEther.tcl,v 1.1.1.1 2006/12/07 12:16:57 karl Exp $ package require Tnm 3.1 -package provide TnmEther 3.1.0 +package provide TnmEther 3.1.3 namespace eval TnmEther { namespace export GetVendor GetEthers diff --git a/tnm/library/TnmIetf.tcl b/tnm/library/TnmIetf.tcl index f4e4a25..960cb1e 100644 --- a/tnm/library/TnmIetf.tcl +++ b/tnm/library/TnmIetf.tcl @@ -14,7 +14,7 @@ # @(#) $Id: TnmIetf.tcl,v 1.1.1.1 2006/12/07 12:16:57 karl Exp $ package require Tnm 3.1 -package provide TnmIetf 3.1.0 +package provide TnmIetf 3.1.3 namespace eval TnmMap { namespace export GetRfcUrl GetMibModuleUrl diff --git a/tnm/library/TnmInet.tcl b/tnm/library/TnmInet.tcl index 7616da6..3c157c4 100644 --- a/tnm/library/TnmInet.tcl +++ b/tnm/library/TnmInet.tcl @@ -11,7 +11,7 @@ # @(#) $Id: TnmInet.tcl,v 1.1.1.1 2006/12/07 12:16:57 karl Exp $ package require Tnm 3.1 -package provide TnmInet 3.1.0 +package provide TnmInet 3.1.3 namespace eval TnmInet { namespace export GetIpAddress GetIpName DayTime Finger TraceRoute diff --git a/tnm/library/TnmMap.tcl b/tnm/library/TnmMap.tcl index 7753c55..514bf5d 100644 --- a/tnm/library/TnmMap.tcl +++ b/tnm/library/TnmMap.tcl @@ -15,7 +15,7 @@ package require Tnm 3.1 package require TnmInet 3.1 -package provide TnmMap 3.1.0 +package provide TnmMap 3.1.3 namespace eval TnmMap { namespace export GetIpAddress GetIpName GetSnmpSession diff --git a/tnm/library/TnmMib.tcl b/tnm/library/TnmMib.tcl index 139ea0b..9a53c0b 100644 --- a/tnm/library/TnmMib.tcl +++ b/tnm/library/TnmMib.tcl @@ -11,7 +11,7 @@ # @(#) $Id: TnmMib.tcl,v 1.1.1.1 2006/12/07 12:16:57 karl Exp $ package require Tnm 3.1 -package provide TnmMib 3.1.0 +package provide TnmMib 3.1.3 namespace eval TnmMib { namespace export DescribeType DescribeNode GetVendor diff --git a/tnm/library/TnmMonitor.tcl b/tnm/library/TnmMonitor.tcl index bffdb8b..177ce1e 100644 --- a/tnm/library/TnmMonitor.tcl +++ b/tnm/library/TnmMonitor.tcl @@ -17,7 +17,7 @@ package require Tnm 3.1 package require TnmMap 3.1 -package provide TnmMonitor 3.1.0 +package provide TnmMonitor 3.1.3 ######################################################################### diff --git a/tnm/library/TnmScriptMib.tcl b/tnm/library/TnmScriptMib.tcl index 4156908..565c41f 100644 --- a/tnm/library/TnmScriptMib.tcl +++ b/tnm/library/TnmScriptMib.tcl @@ -12,7 +12,7 @@ package require Tnm 3.1 package require TnmSnmp 3.1 -package provide TnmScriptMib 3.1.0 +package provide TnmScriptMib 3.1.3 namespace eval TnmScriptMib { namespace export GetLanguages GetExtensions diff --git a/tnm/library/TnmSmxProfiles.tcl b/tnm/library/TnmSmxProfiles.tcl index c34c8b8..80eb492 100644 --- a/tnm/library/TnmSmxProfiles.tcl +++ b/tnm/library/TnmSmxProfiles.tcl @@ -9,7 +9,7 @@ package require Tnm 3.0 -package provide TnmSmxProfiles 3.1.0 +package provide TnmSmxProfiles 3.1.3 namespace eval TnmSmxProfiles { namespace export safe tnm snmp snmp-134.169 diff --git a/tnm/library/TnmSnmp.tcl b/tnm/library/TnmSnmp.tcl index 5a80f6a..c745da8 100644 --- a/tnm/library/TnmSnmp.tcl +++ b/tnm/library/TnmSnmp.tcl @@ -14,7 +14,7 @@ package require Tnm 3.1 package require TnmDialog 3.1 package require TnmInet 3.1 -package provide TnmSnmp 3.1.0 +package provide TnmSnmp 3.1.3 namespace eval TnmSnmp { namespace export Walk diff --git a/tnm/library/TnmTerm.tcl b/tnm/library/TnmTerm.tcl index e807fef..32cdc82 100644 --- a/tnm/library/TnmTerm.tcl +++ b/tnm/library/TnmTerm.tcl @@ -18,7 +18,7 @@ package require Tnm 3.1 package require TnmInet 3.1 package require TnmDialog 3.1 -package provide TnmTerm 3.1.0 +package provide TnmTerm 3.1.3 namespace eval TnmTerm { namespace export Open Close Clear Write SetName SetIcon diff --git a/tnm/library/pkgIndex.tcl b/tnm/library/pkgIndex.tcl index 75e273e..f98f3bb 100644 --- a/tnm/library/pkgIndex.tcl +++ b/tnm/library/pkgIndex.tcl @@ -7,6 +7,6 @@ foreach pkg { TnmDialog TnmTerm TnmInet TnmMap TnmIetf TnmEther TnmMonitor TnmSnmp TnmMib TnmScriptMib TnmSmxProfiles } { - package ifneeded $pkg 3.1.0 [list source [file join $dir $pkg.tcl]] + package ifneeded $pkg 3.1.3 [list source [file join $dir $pkg.tcl]] } diff --git a/tnm/unix/configure.in b/tnm/unix/configure.in index 3f748df..553dbbd 100644 --- a/tnm/unix/configure.in +++ b/tnm/unix/configure.in @@ -7,7 +7,7 @@ dnl AC_INIT(scotty.c) AC_CONFIG_HEADER(config.h) -TNM_VERSION=3.1.0 +TNM_VERSION=3.1.3 TKI_VERSION=1.6.0 TCL_VERSION=8.6 TK_VERSION=8.6 diff --git a/tnm/win/makefile b/tnm/win/makefile index 426dc4e..01fc817 100644 --- a/tnm/win/makefile +++ b/tnm/win/makefile @@ -5,11 +5,11 @@ # and is derived from the example provided by Sun Microsystems. # -TNM_VERSION = 3.1.0 -TNM_DLL_VERSION = 304 +TNM_VERSION = 3.1.3 +TNM_DLL_VERSION = 313 TKI_VERSION = 1.6.0 -TKI_DLL_VERSION = 150 +TKI_DLL_VERSION = 160 TCL_DLL_VERSION = 84 TK_DLL_VERSION = 84 diff --git a/tnm/win/tnmWinPort.h b/tnm/win/tnmWinPort.h index a4863f0..1016bc8 100644 --- a/tnm/win/tnmWinPort.h +++ b/tnm/win/tnmWinPort.h @@ -39,7 +39,7 @@ #define TKI_VERSION "1.5.1" #ifndef TNMLIB -#define TNMLIB "c:/tcl/lib/tnm3.1.0" +#define TNMLIB "c:/tcl/lib/tnm3.1.3" #endif #ifndef TKINEDLIB