-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TIP 702 - always statically link registry and dde
- Loading branch information
1 parent
b919e78
commit 94be468
Showing
13 changed files
with
531 additions
and
939 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,3 @@ | ||
if {[info sharedlibextension] != ".dll"} return | ||
if {[package vsatisfies [package provide Tcl] 9.0-]} { | ||
package ifneeded dde 1.4.5 \ | ||
[list load [file join $dir tcl9dde14.dll] Dde] | ||
} elseif {![package vsatisfies [package provide Tcl] 8.7] | ||
&& [::tcl::pkgconfig get debug]} { | ||
package ifneeded dde 1.4.5 \ | ||
[list load [file join $dir tcldde14g.dll] Dde] | ||
} else { | ||
package ifneeded dde 1.4.5 \ | ||
[list load [file join $dir tcldde14.dll] Dde] | ||
} | ||
if {$::tcl_platform(platform) ne "windows"} return | ||
# The dde package version tracks the Tcl version | ||
package ifneeded dde [info patchlevel] [load {} Dde] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
if {![package vsatisfies [package provide Tcl] 8.5-]} return | ||
if {[info sharedlibextension] != ".dll"} return | ||
if {[package vsatisfies [package provide Tcl] 9.0-]} { | ||
package ifneeded registry 1.3.7 \ | ||
[list load [file join $dir tcl9registry13.dll] Registry] | ||
} else { | ||
package ifneeded registry 1.3.7 \ | ||
[list load [file join $dir tclregistry13.dll] Registry] | ||
} | ||
if {$::tcl_platform(platform) ne "windows"} return | ||
# The registry package version tracks the Tcl version | ||
package ifneeded registry [info patchlevel] [load {} Registry] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.