Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch autosetup Excluding Merge-Ins
This is equivalent to a diff from 0141e20ff0 to cc008ebab7
2012-06-10
| ||
22:31 | Merge the autosetup and winsrv branches into trunk. check-in: 1ac9cece64 user: drh tags: trunk | |
2012-05-12
| ||
19:03 | Update the built-in SQLite to the first 3.7.12 release candidate. check-in: 3613fe5666 user: drh tags: trunk | |
2012-05-11
| ||
21:17 | Filter out inline shell variables from tclConfig.sh because they break the build on CentOS 5 with TCL 8.4. (Edit: Fixed username.) Leaf check-in: cc008ebab7 user: bcsmith tags: autosetup | |
2012-05-10
| ||
12:22 | Update the built-in SQLite to the 3.7.12 beta as of 2012-05-10. check-in: 0141e20ff0 user: drh tags: trunk | |
2012-05-07
| ||
20:59 | Avoid database locking errors caused by db_optional_sql() writes. check-in: b22cc4eb73 user: drh tags: trunk | |
Changes to autosetup/local.tcl.
18 18 } 19 19 } 20 20 } 21 21 22 22 proc parse-tclconfig-sh-file {filename} { 23 23 foreach line [split [readfile $filename] \n] { 24 24 if {[regexp {^(TCL_[^=]*)=(.*)$} $line -> name value]} { 25 + set value [regsub -all {\$\{.*\}} $value ""] 25 26 set tclconfig($name) [string trim $value '] 26 27 } 27 28 } 28 29 return [array get tclconfig] 29 30 }