9f4e8eb5e9
Highlights of Tcl 8.5 * Speed: 8.5 now runs 10% faster than 8.4 with bytecode improvements, object caching and reduced memory usage. * Bignums: Tcl now supports arbitrary-precision integers, which improves math operations on large integers. * Safer interps: Tcl's powerful safe interpreter mechanism now has improved control of time and command limits in slave interpreters. * clock command: More robust implementation of command for specifying time, with significant l10n and i18n improvements. * dict command: New data structure that allows access to data by value rather than a variable name, which is substantially faster. * Additional improvements: Faster list search, new and improved mathematics procedures, anonymous procedures, new ways to package Tcl extensions, Tcl-level custom channel types, file and line location information for each command, and more. from Stuart Cassoff (MAINTAINER) ok steven@
13 lines
562 B
Plaintext
13 lines
562 B
Plaintext
$OpenBSD: patch-tools_installData_tcl,v 1.1.1.1 2008/04/25 14:10:47 deanna Exp $
|
|
--- tools/installData.tcl.orig Mon Mar 24 01:13:42 2008
|
|
+++ tools/installData.tcl Mon Mar 24 01:13:54 2008
|
|
@@ -35,7 +35,7 @@ proc copyDir { d1 d2 } {
|
|
} elseif { [file isfile $f] } {
|
|
file copy -force $f [file join $d2 $ftail]
|
|
if { $::tcl_platform(platform) eq {unix} } {
|
|
- file attributes [file join $d2 $ftail] -permissions 0644
|
|
+ file attributes [file join $d2 $ftail] -permissions 0444
|
|
} else {
|
|
file attributes [file join $d2 $ftail] -readonly 1
|
|
}
|