Skip to content

Commit

Permalink
Make versions consistent.
Browse files Browse the repository at this point in the history
  • Loading branch information
resuna committed Aug 28, 2020
1 parent e082c09 commit f2509ae
Show file tree
Hide file tree
Showing 32 changed files with 45 additions and 45 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions tkined/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tkined/generic/tkined.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ typedef long LONG;
*----------------------------------------------------------------
*/

#define TKI_VERSION "1.5.1"
#define TKI_VERSION "1.6.0"

#include <tcl.h>
#include <tk.h>
Expand Down
2 changes: 1 addition & 1 deletion tkined/library/Command.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tkined/library/Diagram.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tkined/library/Dialog.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tkined/library/Editor.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
## express or implied warranty.
##

package provide TkinedEditor 1.5.1
package provide TkinedEditor 1.6.0

event add <<TkiClear>> <Alt-c> <Alt-C> <Meta-c> <Meta-C>
event add <<TkiOpen>> <Alt-o> <Alt-O> <Meta-o> <Meta-O>
Expand Down
2 changes: 1 addition & 1 deletion tkined/library/Event.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion tkined/library/Help.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion tkined/library/Misc.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tkined/library/Objects.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tkined/library/Tool.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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. :-)
Expand Down
18 changes: 9 additions & 9 deletions tkined/library/pkgIndex.tcl
Original file line number Diff line number Diff line change
@@ -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]]
2 changes: 1 addition & 1 deletion tkined/unix/configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions tkined/win/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions tnm/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tnm/generic/tnm.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tnm/library/TnmDialog.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tnm/library/TnmEther.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tnm/library/TnmIetf.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tnm/library/TnmInet.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tnm/library/TnmMap.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tnm/library/TnmMib.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tnm/library/TnmMonitor.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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

#########################################################################

Expand Down
2 changes: 1 addition & 1 deletion tnm/library/TnmScriptMib.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tnm/library/TnmSmxProfiles.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tnm/library/TnmSnmp.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tnm/library/TnmTerm.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tnm/library/pkgIndex.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
}

2 changes: 1 addition & 1 deletion tnm/unix/configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions tnm/win/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tnm/win/tnmWinPort.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f2509ae

Please sign in to comment.