Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Changes for version 8.1 Windows |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
c9c88a87c6306d25f0c997ad0cdc9c35 |
| User & Date: | ramsan 2012-04-25 11:17:22 |
Context
|
2012-04-25
| ||
| 13:04 | Fixed some details for windows check-in: 704f470336 user: ramsan tags: trunk, release_8.1 | |
| 11:17 | Changes for version 8.1 Windows check-in: c9c88a87c6 user: ramsan tags: trunk | |
| 11:00 | Changes for version 8.1 docs check-in: b342eaedfa user: ramsan tags: trunk | |
Changes
Changes to install/makefile.tcl.
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
} elseif { $::tcl_platform(os) eq "Darwin" } {
set exeList [list fossil]
} else {
set exeList [list fossil]
}
foreach i $exeList {
if { ![file exists [file join .. addons exe $i]] } {
error "file '[file normalize [file join .. addons exe]]' does not exist"
}
}
if { $fossil } {
fossil_tag_add . release_$version
}
set remove_packages0 [list {*}$createdistribution::remove_packages trf bwidget \
vfs vfs::ftp he_dialog wce compass_utils compass_utils::c \
textutil::adjust textutil::repeat \
textutil::split textutil::tabify textutil::trim textutil::string tile \
tooltip htmlparse math autoscroll base64 cmdline md5 struct textutil uri thread \
ncgi sha1 \
]
foreach pNode $pNodes {
set pname [$pNode @n]
set program_name [$pNode selectNodes string(Name)]
set version [$pNode selectNodes string(Version)]
|
| | |
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
} elseif { $::tcl_platform(os) eq "Darwin" } {
set exeList [list fossil]
} else {
set exeList [list fossil]
}
foreach i $exeList {
if { ![file exists [file join .. addons exe $i]] } {
error "file '[file normalize [file join .. addons exe $i]]' does not exist"
}
}
if { $fossil } {
fossil_tag_add . release_$version
}
set remove_packages0 [list {*}$createdistribution::remove_packages trf bwidget \
vfs vfs::ftp he_dialog wce compass_utils compass_utils::c \
textutil::adjust textutil::repeat \
textutil::split textutil::tabify textutil::trim textutil::string tile \
tooltip htmlparse math autoscroll base64 cmdline md5 struct textutil uri thread \
ncgi sha1 math::constants \
]
foreach pNode $pNodes {
set pname [$pNode @n]
set program_name [$pNode selectNodes string(Name)]
set version [$pNode selectNodes string(Version)]
|