Itk - the [incr Tk] extension

Check-in [360f468ec5]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:merge trunk
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | dgp-method-type
Files: files | file ages | folders
SHA1: 360f468ec5e152de9ec4b915628357389b5802d7
User & Date: dgp 2016-09-19 19:01:58.704
Context
2017-06-29
16:23
merge trunk check-in: dde8dc2497 user: dgp tags: dgp-method-type
2016-09-19
19:01
merge trunk check-in: 360f468ec5 user: dgp tags: dgp-method-type
19:01
Protect against loading Itk 4 in an interp already housing Itcl 3. check-in: 52ddb55ee0 user: dgp tags: trunk
2016-09-16
15:16
merge trunk check-in: 1b12c5b8dc user: dgp tags: dgp-method-type
Changes
Unified Diff Ignore Whitespace Patch
Changes to pkgIndex.tcl.in.
1
2
3

4
5
# Tcl package index file, version 1.0

if {![package vsatisfies [package present Tcl] 8.6]} return

package ifneeded itk @PACKAGE_VERSION@ [list load [file join $dir "@PKG_LIB_FILE@"] Itk]
package ifneeded Itk @PACKAGE_VERSION@ [list load [file join $dir "@PKG_LIB_FILE@"] Itk]


|
>


1
2
3
4
5
6
# Tcl package index file, version 1.0

if {![package vsatisfies [package provide Tcl] 8.6]} return
if {[string length [package provide Itcl]] && ![package vsatisfies [package provide Itcl] 4]} return
package ifneeded itk @PACKAGE_VERSION@ [list load [file join $dir "@PKG_LIB_FILE@"] Itk]
package ifneeded Itk @PACKAGE_VERSION@ [list load [file join $dir "@PKG_LIB_FILE@"] Itk]