Differences From Artifact [244dcc78a1]:
- File packages/tcl/8.4/win32-x86/Garuda1.0/Tests/all.tcl — part of check-in [4a0a76829e] at 2017-07-21 21:55:54 on branch trunk — Move all the package files into the 'packages' sub-directory. (user: mistachkin, size: 26065) [annotate] [blame] [check-ins using]
- File tcl/8.4/win32-x86/Garuda1.0/Tests/all.tcl — part of check-in [b53e702ce5] at 2016-11-05 21:00:30 on branch trunk — Update the Garuda package to pre-Beta 39. This includes the 'dotnet' sub-package and the 'load Eagle from library path' enhancements. (user: mistachkin, size: 26065) [annotate] [blame] [check-ins using]
To Artifact [7543856fec]:
- File packages/tcl/8.4/win32-x86/Garuda1.0/Tests/all.tcl — part of check-in [8bf71bf5cb] at 2017-10-04 19:09:12 on branch trunk — Update the Garuda pacakge for 'x86' to the beta 40 release. (user: mistachkin, size: 26432) [annotate] [blame] [check-ins using]
- File packages/tcl/8.4/win64-x64/Garuda1.0/Tests/all.tcl — part of check-in [ee4b3f2fc1] at 2017-10-19 00:47:26 on branch trunk — Add the Garuda pacakge for 'x64' (beta 40 release). (user: mistachkin, size: 26432) [annotate] [blame] [check-ins using]
| ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | + + + + + + + + + + |
# See the file "license.terms" for information on usage and redistribution of
# this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# RCS: @(#) $Id: $
#
###############################################################################
#
# NOTE: This script file uses features that are only present in Tcl 8.4 or
# higher (e.g. the "eq" operator for [expr], etc).
#
if {![package vsatisfies [package provide Tcl] 8.4]} then {
error "need Tcl 8.4 or higher"
}
#
# NOTE: This script file uses features that are not available or not needed
# in Eagle (e.g. the "http" and "tls" packages, etc).
#
if {[catch {package present Eagle}] == 0} then {
error "need native Tcl"
}
###############################################################################
namespace eval ::Garuda {
#############################################################################
#**************************** SHARED PROCEDURES *****************************
#############################################################################
#
|
| ︙ |