File: pkgIndex_mac.tcl

package info (click to toggle)
tclvfs 1.3-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,384 kB
  • ctags: 415
  • sloc: tcl: 3,670; xml: 2,882; sh: 2,736; ansic: 1,264; makefile: 57
file content (19 lines) | stat: -rw-r--r-- 535 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Tcl package index file, version 1.1

# We don't really want to throw an error with older versions of
# Tcl, they should just ignore us.
if {[package provide Tcl] < 8.4} {
    return
}

package require Tcl 8.4
if {[info tclversion] == 8.4} {
    if {[regexp {8.4a(1|2|3|4)} [info patchlevel]]} {
	error "Tcl 8.4a5 (March 20th 2002) or newer is required"
    }
}

package ifneeded vfs 1.0 "load [list [file join $dir Vfs[info sharedlibextension]]] vfs
source -rsrc vfs:tclIndex"

package ifneeded mk4vfs 1.5 [list source -rsrc mk4vfs]